-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
66 lines (66 loc) · 1.66 KB
/
package.json
File metadata and controls
66 lines (66 loc) · 1.66 KB
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
65
66
{
"name": "helpful-cli",
"version": "2.0.0-alpha",
"description": "Command line utility for custom project scaffolding.",
"main": "./dist/index.js",
"scripts": {
"preversion": "npm test",
"version": "npm run build",
"postversion": "git push origin master && git push origin master --tags",
"clean": "rimraf dist",
"build": "rollup -c",
"watch": "npm run build -- --watch",
"test": "mocha",
"tdd": "npm run test -- --watch",
"prepublish": "npm run clean && npm run build"
},
"bin": {
"helpme": "./bin/index.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/helpfulhuman/helpful-cli.git"
},
"keywords": [
"helpfulhuman",
"helpful",
"tool",
"cli",
"scaffolding"
],
"author": "Helpful Human <hello@helpfulhuman.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/helpfulhuman/helpful-cli/issues"
},
"homepage": "https://github.com/helpfulhuman/helpful-cli#readme",
"dependencies": {
"async": "^2.0.1",
"chalk": "^1.1.3",
"commander": "^2.9.0",
"figures": "^2.0.0",
"fs-extra": "^0.30.0",
"glob": "^7.1.1",
"inquirer": "^1.2.1",
"is-glob": "^3.1.0",
"lodash": "^4.16.3",
"minimatch": "^3.0.3",
"nunjucks": "^2.5.2",
"ramda": "^0.22.1",
"request": "^2.79.0",
"shelljs": "^0.7.4",
"shortid": "^2.2.6",
"unzip": "^0.1.11",
"yamljs": "^0.2.8"
},
"devDependencies": {
"chai": "^3.5.0",
"mocha": "^3.2.0",
"rimraf": "^2.5.4",
"rollup": "^0.41.4",
"rollup-plugin-buble": "^0.15.0",
"rollup-plugin-commonjs": "^7.0.0",
"rollup-watch": "^3.2.2",
"sinon": "^1.17.7"
}
}