-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
42 lines (42 loc) · 853 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": "brewbe",
"version": "0.1.0",
"description": "Ease management of project settings (ports, versions etc..) and build files for different environments automatically.",
"main": "index.js",
"scripts": {
"test": "ava --serial"
},
"keywords": [
"buildout",
"project",
"management",
"productivity"
],
"bin": {
"brewbe": "index.js"
},
"author": "Fabian Frank",
"license": "MIT",
"devDependencies": {
"ava": "^0.23.0",
"proxyquire": "^1.8.0",
"rimraf": "^2.6.2"
},
"dependencies": {
"async": "^2.6.0",
"commander": "^2.12.1",
"globby": "^7.1.1",
"handlebars": "^4.0.11",
"ini": "^1.3.5",
"mkdirp": "^0.5.1"
},
"ava": {
"source": [
"src/**/*.js"
]
},
"repository": {
"type": "git",
"url": "https://github.com/fabifrank/brewbe"
}
}