-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
68 lines (68 loc) · 1.53 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
{
"name": "koa2-starter",
"version": "0.2.0",
"description": "Koa2 application generator.",
"bin": {
"koa2": "bin/koa2.js"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"commit": "git cz"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.js": [
"eslint --fix",
"git add"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/liuxing/koa2-starter-cli.git"
},
"keywords": [
"koa2",
"koa2-generator",
"koa2-starter"
],
"author": "Liu Xing",
"license": "MIT",
"bugs": {
"url": "https://github.com/liuxing/koa2-starter-cli/issues"
},
"homepage": "https://github.com/liuxing/koa2-starter-cli#readme",
"dependencies": {
"chalk": "^2.4.1",
"commander": "^2.15.1",
"consolidate": "^0.15.1",
"download-git-repo": "^1.0.2",
"ejs": "^2.6.1",
"inquirer": "^6.0.0",
"metalsmith": "^2.3.0",
"minimatch": "^3.0.4",
"ora": "^2.1.0",
"read-metadata": "^1.0.0",
"rimraf": "^2.6.2"
},
"devDependencies": {
"commitizen": "^2.10.1",
"cz-conventional-changelog": "^2.1.0",
"eslint": "^5.0.1",
"eslint-config-standard": "^11.0.0",
"eslint-plugin-import": "^2.13.0",
"eslint-plugin-node": "^6.0.1",
"eslint-plugin-promise": "^3.8.0",
"eslint-plugin-standard": "^3.1.0",
"husky": "^1.0.0-rc.10",
"lint-staged": "^7.2.0"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}