-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
69 lines (69 loc) · 1.68 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
65
66
67
68
69
{
"name": "raappid",
"description": "Project scaffolding tool",
"version": "0.4.2",
"author": {
"name": "\"coolchem\" Varun Reddy Nalagatla"
},
"homepage": "http://raappid.com/",
"repository": {
"type": "git",
"url": "git://github.com/coolchem/raappid.git"
},
"bugs": {
"url": "https://github.com/coolchem/raappid/issues"
},
"licenses": [
{
"type": "MIT",
"url": "https://github.com/coolchem/raappid/blob/master/LICENSE"
}
],
"engines": {
"node": ">=5.0.0"
},
"keywords": [
"development"
],
"dependencies": {
"chalk": "1.1.1",
"cross-spawn-async": "2.1.6",
"fs-extra": "0.26.2",
"github": "0.2.4",
"minimist": "1.2.0",
"read": "1.0.7",
"which": "1.2.0"
},
"devDependencies": {
"chai": "3.4.0",
"coveralls": "2.11.4",
"del": "2.0.2",
"istanbul": "0.4.0",
"mocha": "2.3.3",
"mock-stdin": "0.3.0",
"sinon": "1.17.2",
"sinon-as-promised": "4.0.0",
"sinon-chai": "2.8.0",
"tsd": "0.6.5",
"typescript": "1.7"
},
"bin": {
"raappid": "dist/bin/raappid.js"
},
"files": [
"dist"
],
"scripts": {
"install-other-dependencies": "node scripts/install-other-dependencies.js",
"install-deps": "npm install && npm run install-other-dependencies",
"clean": "node scripts/clean.js",
"build": "node scripts/build.js",
"build-release": "npm run build release",
"test": "node scripts/test.js",
"coverage": "node scripts/coverage.js",
"release-major": "node scripts/release.js major",
"release-minor": "node scripts/release.js minor",
"release-patch": "node scripts/release.js patch",
"deploy": "node scripts/deploy.js"
}
}