-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
82 lines (82 loc) · 2.37 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
{
"name": "donejs-cli",
"version": "3.2.2",
"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 --tag=pre",
"release:patch": "npm version patch && npm publish",
"release:minor": "npm version minor && npm publish",
"release:major": "npm version major && npm publish",
"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",
"is-ci": "^1.0.7",
"istanbul": "^0.4.2",
"jshint": "^2.8.0",
"mocha": "^5.0.2",
"mocha-lcov-reporter": "^1.2.0",
"mockery": "^2.0.0",
"rimraf": "^3.0.0"
},
"dependencies": {
"commander": "^2.9.0",
"cross-spawn": "^6.0.5",
"debug": "^4.1.1",
"mkdirp": "^0.5.1",
"q": "^1.5.1",
"yeoman-environment": "^2.3.4"
},
"donejs": {
"dependencies": {
"can": "^5.20.1",
"can-route-pushstate": "^5.0.7",
"can-stache-route-helpers": "^1.1.1",
"can-zone": "^1.0.0",
"done-autorender": "^2.4.3",
"done-component": "^2.2.0",
"done-css": "^3.0.2",
"done-serve": "^3.0.0",
"generator-donejs": "^3.0.0",
"steal": "^2.1.6",
"steal-less": "^1.2.2"
},
"devDependencies": {
"can-debug": "^2.0.1",
"can-route-hash": "^1.0.1",
"donejs-cli": "^3.0.0-pre.5",
"funcunit": "^3.6.1",
"steal-conditional": "^1.0.0",
"steal-qunit": "^1.0.1",
"steal-tools": "^2.0.9",
"testee": "^0.8.1"
}
}
}