forked from slightlytyler/bluprint
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
44 lines (44 loc) · 1.08 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
44
{
"name": "bluprint",
"version": "0.5.1",
"description": "CLI app for easily creating and placing boilerplate code from predefined blueprints.",
"main": "dist/index.js",
"scripts": {
"build": "babel src --out-dir dist",
"watch": "babel -w src --out-dir dist",
"prepublish": "npm run build",
"clear": "find ./dummy/app/ -mindepth 1 -maxdepth 1 -type d -exec rm -rf {} +"
},
"repository": {
"type": "git",
"url": "https://github.com/slightlytyler/bluprint.git"
},
"author": "Tyler Martinez",
"contributors": [
"Charles Lehnert"
],
"license": "MIT",
"devDependencies": {
"babel": "^5.8.29"
},
"publishConfig": {
"registry": "http://npm.lucianos.csb.pslgroup.com/"
},
"bin": {
"bluprint": "dist/index.js"
},
"dependencies": {
"chalk": "^1.1.1",
"change-case": "^2.3.0",
"chip": "0.0.5",
"colors": "^1.1.2",
"commander": "^2.9.0",
"findit": "^2.0.0",
"inflection": "^1.7.2",
"lodash": "^3.10.1",
"mkdirp": "^0.5.1",
"path": "^0.12.7",
"promptly": "^0.2.1",
"smart-stream": "^0.2.0"
}
}