-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 1.39 KB
/
Copy pathpackage.json
File metadata and controls
63 lines (63 loc) · 1.39 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
{
"name": "nva",
"version": "1.0.62",
"description": "scaffold for frontend and isomorphic project",
"bin": {
"nva": "bin/nva.js"
},
"engines": {
"node": ">=10.13.0"
},
"scripts": {
"test": "ava --verbose",
"test:before": "node test/fixture/setup.js",
"test:after": "node test/fixture/teardown.js"
},
"lint-staged": {
"*.js": [
"eslint",
"git add"
]
},
"ava": {
"files": "test/spec/*.js",
"failFast": true,
"failWithoutAssertions": false
},
"repository": {
"type": "git",
"url": "git+https://github.com/ali322/nva.git"
},
"author": "alichen",
"license": "MIT",
"dependencies": {
"axios": "^0.19.0",
"chalk": "^1.1.3",
"commander": "^2.9.0",
"download-git-repo": "^1.0.0",
"ejs": "^2.6.1",
"execa": "^0.6.3",
"fs-extra": "^2.1.2",
"glob": "^7.1.3",
"inquirer": "^3.0.6",
"js-yaml": "^3.8.3",
"lodash": "^4.17.4",
"nva-task": "^1.0.62",
"ora": "^1.2.0",
"pretty-error": "^2.1.1",
"rimraf": "^2.5.4",
"semver": "^5.3.0"
},
"devDependencies": {
"ava": "^1.0.1",
"eslint": "^4.18.2",
"eslint-config-standard": "^10.2.1",
"eslint-plugin-import": "^2.7.0",
"eslint-plugin-node": "^5.1.1",
"eslint-plugin-promise": "^3.5.0",
"eslint-plugin-standard": "^3.0.1",
"husky": "^0.14.3",
"lint-staged": "^7.0.5",
"shelljs": "^0.8.1"
}
}