-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
90 lines (90 loc) · 2.35 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
{
"name": "git-fcm",
"version": "0.2.2",
"description": "Tool for creating a 'git commit' from predefined templates.",
"main": "index.js",
"author": {
"name": "Szymon Standarski",
"email": "[email protected]"
},
"license": "MIT",
"private": false,
"target": "node",
"repository": {
"type": "git",
"url": "https://github.com/ambus/gfc.git"
},
"bugs": "https://github.com/ambus/gfc/issues",
"homepage": "https://github.com/ambus/gfc",
"keywords": [
"git",
"commit",
"message format",
"format"
],
"bin": {
"git-fcm": "./main.bundle.js"
},
"scripts": {
"test-coverage": "NODE_ENV=development jest --coverage",
"test": "NODE_ENV=development jest --verbose",
"test:console": "NODE_ENV=development jest --verbose false",
"test:watch": "NODE_ENV=development jest --watch",
"test:watch:non-console": "NODE_ENV=development jest --watch --verbose false",
"build": "webpack",
"build-type-script": "tsc",
"start": "nodemon ./src/index.js",
"start:live": "NODE_ENV=development nodemon --exec ./node_modules/.bin/ts-node -- ./src/index.ts",
"start:dist": "NODE_ENV=production nodemon ./dist/server.js",
"release": "standard-version",
"karma": "karma start"
},
"dependencies": {
"chalk": "^2.4.2",
"gradient-string": "^1.2.0",
"ora": "^3.4.0",
"readline-sync": "^1.4.9",
"rxjs": "^6.5.2",
"simple-git": "^1.113.0"
},
"devDependencies": {
"@types/gradient-string": "^1.1.0",
"@types/gulp": "^4.0.6",
"@types/jest": "^24.0.13",
"@types/mock-fs": "^3.6.30",
"@types/node": "^12.0.2",
"del": "^4.1.1",
"gulp": "^4.0.2",
"gulp-chmod": "^3.0.0",
"gulp-header": "^2.0.7",
"gulp-replace": "^1.0.0",
"gulp-sftp-up4": "^0.1.8",
"jest": "^24.8.0",
"jest-cli": "^24.8.0",
"mock-fs": "^4.10.0",
"nodemon": "^1.19.0",
"path": "^0.12.7",
"standard-version": "^6.0.1",
"ts-jest": "^24.0.2",
"ts-loader": "^6.0.1",
"ts-node": "^8.1.0",
"typescript": "^3.4.5",
"webpack": "^4.32.2",
"webpack-cli": "^3.3.2"
},
"jest": {
"transform": {
"^.+\\.tsx?$": "ts-jest"
},
"verbose": true,
"testRegex": "src/.*.(test|spec).(jsx?|tsx?)$",
"testEnvironment": "node",
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"jsx",
"node"
]
}
}