-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
executable file
·70 lines (70 loc) · 1.96 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
{
"name": "@godspeedsystems/godspeed",
"description": "Godspeed CLI",
"homepage": "https://godspeed.systems",
"version": "2.9.2",
"main": "./lib/index.js",
"bin": {
"godspeed": "./lib/index.js"
},
"scripts": {
"clean": "rm -rf lib/ dist-test/",
"build:prod": "tsc --project tsconfig.json",
"build:test:prod": "tsc --project test/tsconfig.json",
"build:dev": "tsc --project tsconfig.json --sourceMap --watch",
"prepublishOnly": "npm run clean && npm run build:prod",
"local": "sudo npm uninstall -g && sudo npm install -g && godspeed",
"build:test": "tsc --project test/tsconfig.json --sourceMap --watch",
"test": " mocha dist-test/commands/index.js"
},
"dependencies": {
"@adobe/inquirer-table-checkbox": "^1.2.0",
"@godspeedsystems/core": "^2.4.8",
"axios": "^0.27.2",
"chai": "^4.3.8",
"chalk": "^4.1.0",
"clear": "^0.1.0",
"commander": "^10.0.1",
"cross-spawn": "^7.0.3",
"docker-compose": "^0.23.17",
"dotenv": "^16.0.3",
"ejs": "^3.1.8",
"es6-template-string": "^1.2.0",
"fs-extra": "^11.1.1",
"glob": "10.3.4",
"inquirer": "^8.2.5",
"js-yaml": "^4.1.0",
"lodash": "^4.17.21",
"mocha": "^10.2.0",
"path": "^0.12.7",
"pino-pretty": "^10.2.0",
"proxyquire": "^2.1.3",
"replace-in-file": "^6.3.5",
"signale": "^1.4.0",
"simple-git": "^3.7.1",
"sinon": "^16.0.0"
},
"devDependencies": {
"@types/chai": "^4.3.6",
"@types/cross-spawn": "^6.0.3",
"@types/dotenv": "^8.2.0",
"@types/ejs": "^3.1.1",
"@types/fs-extra": "^11.0.4",
"@types/glob": "^7.2.0",
"@types/handlebars-helpers": "^0.5.3",
"@types/inquirer": "^9.0.3",
"@types/js-yaml": "^4.0.5",
"@types/mocha": "^10.0.1",
"@types/node": "^18.17.14",
"@types/proxyquire": "^1.3.29",
"@types/sinon": "^10.0.16",
"prettier": "^2.8.8",
"typescript": "^4.9.5"
},
"keywords": [
"cli",
"nodejs",
"godspeed",
"typescript"
]
}