forked from donejs/donejs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
89 lines (89 loc) · 2.82 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
{
"name": "donejs",
"version": "2.1.0",
"description": "Your app is done",
"main": "./lib/cli/index.js",
"bin": {
"donejs": "./bin/donejs"
},
"scripts": {
"docs-copy": "cp -R docs/static/img site/static/ && cp docs/static/favicon.ico site/favicon.ico",
"document": "bit-docs && npm run docs-copy",
"document:force": "bit-docs -fd && npm run docs-copy",
"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\"",
"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": {
"bit-docs": "0.0.9",
"coveralls-send": "0.0.2",
"dotdotdot": "^1.7.0",
"es6-promise": "^4.1.0",
"guide-automation": "^0.3.11",
"is-appveyor": "^1.0.0",
"istanbul": "^0.4.2",
"jshint": "^2.8.0",
"mocha": "^3.2.0",
"mocha-lcov-reporter": "^1.2.0",
"mockery": "^2.0.0",
"node-fetch": "^1.3.3",
"rimraf": "^2.5.2",
"stream-when": "^1.0.0"
},
"dependencies": {
"commander": "^2.8.1",
"cross-spawn-async": "^2.0.0",
"q": "^1.4.1"
},
"directories": {
"doc": "docs"
},
"bit-docs": {
"dependencies": {
"bit-docs-glob-finder": "^0.0.5",
"bit-docs-dev": "^0.0.3",
"bit-docs-js": "^0.0.6",
"bit-docs-tag-sourceref": "^0.0.3",
"bit-docs-tag-package": "^0.0.3",
"bit-docs-process-mustache": "^0.0.1",
"bit-docs-generate-html": "^0.3.6",
"bit-docs-prettify": "^0.1.0",
"bit-docs-html-highlight-line": "^0.2.2",
"bit-docs-tag-demo": "^0.3.0",
"bit-docs-html-toc": "^0.6.2",
"bit-docs-donejs-theme": "^1.4.0"
},
"glob": {
"pattern": "docs/**/*.{md,mustache}"
},
"parent": "donejs",
"minifyBuild": true,
"dest": "./site"
}
}