-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
42 lines (42 loc) · 858 Bytes
/
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
{
"name": "mkstack",
"version": "3.0.0",
"description": "manage npm stacks",
"scripts": {
"test": "standard && node test"
},
"bin": {
"mkstack": "./index.js"
},
"repository": {
"type": "git",
"url": "[email protected]:ralphtheninja/mkstack"
},
"keywords": [
"manage",
"stacks",
"devops"
],
"author": "Lars-Magnus Skog <[email protected]>",
"license": "GPL-3.0",
"bugs": {
"url": "https://github.com/ralphtheninja/mkstack/issues"
},
"homepage": "https://github.com/ralphtheninja/mkstack",
"devDependencies": {
"rimraf": "^2.6.2",
"standard": "^11.0.1",
"tape": "^4.8.0"
},
"dependencies": {
"async": "^2.5.0",
"chalk": "^2.1.0",
"defined": "1.0.0",
"home-dir": "^1.0.0",
"rc": "^1.2.1",
"xtend": "^4.0.0"
},
"engines": {
"node": ">=6"
}
}