-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
72 lines (72 loc) · 1.86 KB
/
package.json
File metadata and controls
72 lines (72 loc) · 1.86 KB
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
{
"name": "coherent-cli",
"description": "A command line interface for developing Coherent Gameface and Prysm projects",
"version": "1.0.2",
"author": "@CoherentLabs",
"bin": {
"coherent-cli": "./index.js"
},
"bugs": "https://github.com/CoherentLabs/coherent-cli/issues",
"dependencies": {
"@oclif/command": "^1.8.0",
"@oclif/config": "^1.17.0",
"@oclif/plugin-help": "^3.2.4",
"@slimio/async-cli-spinner": "^0.5.2",
"boxen": "^5.0.0",
"chalk": "^4.1.2",
"chokidar": "^3.5.3",
"cli-progress": "^3.10.0",
"ejs": "^3.1.6",
"execa": "^4.1.0",
"fs-extra": "^10.0.0",
"glob": "^7.2.0",
"handlebars": "^4.7.7",
"htmlhint": "^1.1.0",
"inquirer": "^8.2.0",
"inquirer-path": "^1.0.0-beta5",
"listr": "^0.14.3",
"ncp": "^2.0.0",
"node-fetch": "^2.6.6",
"ora": "^4.1.1",
"semver": "^7.3.5",
"stylelint": "^14.2.0",
"user-packages": "^0.1.0"
},
"devDependencies": {
"@oclif/dev-cli": "^1.26.0",
"@oclif/test": "^1.2.8",
"chai": "^4.3.4",
"concat-stream": "^2.0.0",
"globby": "^10.0.2",
"inquirer-test": "^2.0.1",
"mocha": "^9.1.4",
"nyc": "^14.1.1",
"rimraf": "^3.0.2"
},
"engines": {
"node": ">=14.0.0"
},
"files": [
"/bin",
"/npm-shrinkwrap.json",
"/oclif.manifest.json",
"/src",
"/index.js"
],
"homepage": "https://github.com/CoherentLabs/coherent-cli",
"license": "ISC",
"main": "src/index.js",
"oclif": {
"commands": "./src/commands",
"bin": "coherent-cli",
"plugins": [
"@oclif/plugin-help"
]
},
"repository": "https://github.com/CoherentLabs/coherent-cli",
"scripts": {
"test": "node ./test/checkPath.js && nyc -s mocha --forbid-only \"test/**/*.test.js\" --timeout 20000",
"version": "oclif-dev readme && git add README.md",
"publish": "node ./scripts/publish.js"
}
}