forked from donejs/cli
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
99 lines (99 loc) · 2.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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
{
"name": "donejs-cli",
"version": "0.9.5",
"description": "The command line interface to your DoneJS application.",
"main": "lib/utils",
"bin": {
"donejs": "./bin/donejs"
},
"scripts": {
"test": "npm run jshint && npm run mocha",
"jshint": "jshint lib/. bin/donejs test/. --config",
"mocha": "mocha test/ --timeout 120000",
"verify": "echo \"Script ran $1 $2\"",
"publish": "git push origin && git push origin --tags",
"release:prerelease": "npm version prerelease && npm publish",
"release:patch": "npm version patch && npm publish",
"release:minor": "npm version minor && npm publish",
"release:major": "npm version major && npm publish",
"engine-deps": "install-engine-dependencies",
"coverage": "istanbul cover _mocha -- test/ --timeout 600000",
"coverage:upload": "istanbul cover _mocha --report lcovonly -- test/ --timeout 600000 && cat ./coverage/lcov.info | ./node_modules/coveralls-send/bin/coveralls.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/donejs/cli.git"
},
"keywords": [
"CanJS",
"StealJS",
"DoneJS"
],
"author": "Bitovi",
"license": "MIT",
"bugs": {
"url": "https://github.com/donejs/cli/issues"
},
"homepage": "https://github.com/donejs/cli",
"devDependencies": {
"concat-stream": "^1.5.1",
"coveralls-send": "0.0.2",
"cross-spawn-async": "^2.1.9",
"documentjs": "^0.4.1",
"engine-dependencies": "^0.2.11",
"is-ci": "^1.0.7",
"istanbul": "^0.4.2",
"jshint": "^2.8.0",
"mocha": "^2.2.5",
"mocha-lcov-reporter": "^1.2.0",
"mockery": "^1.4.1",
"rimraf": "^2.5.2"
},
"dependencies": {
"commander": "^2.9.0",
"cross-spawn-async": "^2.0.0",
"debug": "^2.2.0",
"mkdirp": "^0.5.1",
"q": "^1.4.1",
"steal-platform": "0.0.4",
"yeoman-environment": "^1.2.7",
"yeoman-generator": "^0.22.3"
},
"donejs": {
"dependencies": {
"can": "^2.3.16",
"can-connect": "^0.5.0",
"can-zone": "^0.5.0",
"done-serve": "^0.2.0",
"done-autorender": "^0.8.0",
"done-component": "^0.4.0",
"done-css": "~2.0.2",
"generator-donejs": "^0.9.0",
"jquery": "~2.2.1",
"steal": "^0.16.0"
},
"devDependencies": {
"documentjs": "^0.4.2",
"donejs-deploy": "^0.4.0",
"funcunit": "~3.0.0",
"steal-qunit": "^0.1.1",
"steal-tools": "^0.16.0",
"testee": "^0.2.4",
"donejs-cli": "^0.9.4",
"can-fixture": "^0.1.2"
}
},
"engineDependencies": {
"node": {
"0.10.x": {
"devDependencies": {
"npm": "^2.13.1"
}
}
},
"iojs": {}
},
"system": {
"npmDependencies": []
}
}