-
Notifications
You must be signed in to change notification settings - Fork 10
/
package.json
50 lines (50 loc) · 1.21 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
{
"name": "think-cli",
"version": "2.2.9",
"description": "A simple CLI for scaffolding Thinkjs projects.",
"bin": {
"thinkjs": "bin/thinkjs",
"think-cli": "bin/thinkjs"
},
"main": "bin/thinkjs",
"scripts": {
"test": "eslint lib/ && nyc ava test/ --serial",
"lint": "eslint lib/",
"lint-fix": "eslint --fix lib/"
},
"repository": {
"type": "git",
"url": "git+https://github.com/thinkjs/think-cli.git"
},
"keywords": [
"cli",
"think"
],
"author": "Berwin <[email protected]> (https://github.com/berwin)",
"license": "MIT",
"bugs": {
"url": "https://github.com/thinkjs/think-cli/issues"
},
"homepage": "https://github.com/thinkjs/think-cli#readme",
"dependencies": {
"chalk": "^1.1.3",
"commander": "^2.9.0",
"consolidate": "^0.14.5",
"download-git-repo": "^1.0.1",
"ejs": "^2.5.7",
"inquirer": "^3.1.0",
"metalsmith": "^2.3.0",
"minimist": "^1.2.0",
"multimatch": "^2.1.0",
"ora": "^1.2.0",
"think-helper": "^1.0.21",
"urllib": "^2.22.0"
},
"devDependencies": {
"ava": "^0.25.0",
"coveralls": "^3.0.2",
"eslint": "^4.18.2",
"eslint-config-think": "^1.0.1",
"nyc": "^13.0.0"
}
}