forked from donejs/donejs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
67 lines (67 loc) · 2.12 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
{
"name": "donejs",
"version": "0.9.2",
"description": "Your app is done",
"main": "index.js",
"bin": {
"donejs": "./bin/donejs"
},
"scripts": {
"test": "npm run jshint && npm run mocha && npm run document && npm run test-guides",
"test-guides": "npm run test-quickstart && npm run test-pmo",
"test-quickstart": "guide guides/guide/test.js --local",
"test-pmo": "guide guides/place-my-order/test.js --local",
"jshint": "jshint lib/. bin/donejs test/. --config",
"mocha": "mocha test/test --timeout 120000",
"verify": "echo \"Script ran\"",
"document:watch": "documentjs --watch",
"document": "documentjs -f && cp docs/theme/static/favicon.ico site/favicon.ico",
"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",
"coverage": "istanbul cover _mocha -- test/test --timeout 120000",
"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/donejs.git"
},
"keywords": [
"CanJS",
"StealJS",
"DoneJS"
],
"author": "Bitovi",
"license": "MIT",
"bugs": {
"url": "https://github.com/donejs/donejs/issues"
},
"homepage": "https://github.com/donejs/donejs",
"devDependencies": {
"coveralls-send": "0.0.2",
"documentjs": "^0.4.3",
"dotdotdot": "^1.7.0",
"es6-promise": "^3.0.2",
"guide-automation": "^0.3.0",
"is-appveyor": "^1.0.0",
"istanbul": "^0.4.2",
"jshint": "^2.8.0",
"mocha": "^2.2.5",
"mocha-lcov-reporter": "^1.2.0",
"mockery": "^1.4.1",
"node-fetch": "^1.3.3",
"rimraf": "^2.5.2",
"stream-when": "^1.0.0"
},
"dependencies": {
"chalk": "^1.1.3",
"commander": "^2.8.1",
"cross-spawn-async": "^2.0.0",
"q": "^1.4.1"
},
"directories": {
"doc": "docs"
}
}