-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
64 lines (64 loc) · 1.53 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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
{
"name": "jumpstart",
"description": "Creates projects from templates with placeholders.",
"author": "Braveg1rl <[email protected]>",
"license": "MIT",
"keywords": [
"templates",
"boilerplate",
"fast",
"easy",
"quickly",
"placeholders",
"modules",
"projects",
"cli",
"console",
"command-line"
],
"preferGlobal": true,
"version": "0.4.0",
"homepage": "https://github.com/braveg1rl/jumpstart",
"bugs": "https://github.com/braveg1rl/jumpstart/issues",
"repository": {
"type": "git",
"url": "git://github.com/braveg1rl/jumpstart.git"
},
"directories": {
"lib": "./lib"
},
"main": "lib/runWith.js",
"dependencies": {
"bluebird": "^3.4.7",
"easy-table": "1.0.x",
"explorer": "0.0.5",
"faithful": "0.8.x",
"fs-exists": "0.1.x",
"mkdirp": "~0.5.1",
"optimist": "0.6.x",
"prompt": "~1.0.0",
"underscore": "~1.8.3"
},
"devDependencies": {
"coffee-script": "^1.12.2",
"faithful-exec": "0.1.x",
"mocha": "^3.2.0",
"pre-commit": "^1.2.2",
"rimraf": "~2.5.4",
"source-map-support": "^0.4.8"
},
"optionalDependencies": {},
"engines": {
"node": "6.x.x"
},
"bin": {
"jumpstart": "./bin/jumpstart"
},
"scripts": {
"prepublish": "npm test",
"pretest": "npm run build",
"test": "node_modules/.bin/mocha",
"watch": "node_modules/.bin/coffee --watch --compile --output lib/ src/",
"build": "mkdir -p lib && rm -rf lib/* && node_modules/.bin/coffee --compile -m --output lib/ src/"
}
}