-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
41 lines (41 loc) · 955 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
{
"name": "wilfred",
"version": "0.1.6",
"description": "Manage and use local boilerplates",
"main": "index.js",
"preferGlobal": true,
"bin": {
"wilfred": "bin/wilfred.js"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"compile": "babel -d bin/ lib/",
"prepublish": "npm run compile"
},
"keywords": [
"boilerplate",
"local",
"kickstart",
"wireframe"
],
"author": "Michael Owens <[email protected]> (http://michaelowens.nl)",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/michaelowens/wilfred.git"
},
"bugs": {
"url": "https://github.com/michaelowens/wilfred/issues"
},
"dependencies": {
"colors": "1.1.2",
"commander": "2.9.0",
"fs-extra": "0.26.5",
"inquirer": "0.11.4"
},
"devDependencies": {
"babel-cli": "6.4.5",
"babel-preset-es2015": "6.3.13",
"babel-register": "6.4.3"
}
}