-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
43 lines (43 loc) · 1.03 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
{
"name": "kickstart-cli",
"version": "0.8.0",
"description": "Kick start a project by generating code according to template.",
"license": "MIT",
"main": "index.js",
"bin": {
"ks": "index.js"
},
"scripts": {
"upgrade": "yarn-upgrade-all",
"test": "rm -rf test/new-project && node index.js -k test/kickstart-project/ -o test/new-project && jest"
},
"devDependencies": {
"jest": "^22.0.6",
"standard": "^10.0.3",
"yarn-upgrade-all": "^0.3.0"
},
"dependencies": {
"commander": "^2.13.0",
"globby": "^7.1.1",
"isbinaryfile": "^3.0.2",
"js-yaml": "^3.10.0",
"mkdirp": "^0.5.1",
"nunjucks": "^3.0.1",
"ramda": "^0.25.0"
},
"homepage": "https://github.com/tylerlong/kickstart#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/tylerlong/kickstart.git"
},
"keywords": [
"yeoman",
"boilerplate",
"generator",
"kickstart",
"kick-start",
"kick start",
"scaffolding"
],
"author": "Tyler Long <[email protected]>"
}