-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
40 lines (40 loc) · 1.04 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
{
"name": "create-dogstack-app",
"version": "0.3.0",
"description": "create a new dogstack app and scaffold files + folders",
"bin": {
"create-dogstack-app": "./bin.js",
"cda": "./bin.js"
},
"scripts": {
"deps": "dependency-check . && dependency-check . --extra --no-dev",
"start": "node .",
"test": "standard && npm run deps"
},
"repository": {
"type": "git",
"url": "git+https://github.com/root-systems/create-dogstack-app.git"
},
"author": "Root Systems <[email protected]>",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/root-systems/create-dogstack-app/issues"
},
"homepage": "https://dogstack.js.org",
"dependencies": {
"bulk-require": "^1.0.1",
"dedent": "^0.7.0",
"inquirer": "^5.1.0",
"lodash": "^4.17.5",
"minimist": "^1.2.0",
"mkdirp": "^0.5.1",
"recast": "^0.14.7",
"run-parallel": "^1.1.7",
"run-series": "^1.1.6"
},
"devDependencies": {
"dependency-check": "^2.9.1",
"standard": "^10.0.3",
"tape": "^4.8.0"
}
}