-
Notifications
You must be signed in to change notification settings - Fork 378
/
package.json
88 lines (88 loc) · 3.23 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
{
"name": "funcunit",
"version": "3.7.0",
"author": {
"name": "Bitovi",
"email": "[email protected]",
"web": "https://www.bitovi.com/"
},
"repository": {
"type": "git",
"url": "[email protected]:bitovi/funcunit.git",
"github": "https://github.com/bitovi/funcunit"
},
"licenses": [
{
"type": "MIT",
"url": "http://opensource.org/licenses/mit-license.php"
}
],
"scripts": {
"preversion": "npm test && npm run build",
"version": "git commit -am \"Update dist for release\" && git checkout -b release && git add -f dist/",
"postpublish": "git push --tags && git checkout master && git branch -D release && git push",
"ci": "rm -rf ~/.mozilla && npm run testee:integ_qunit1 && npm run testee:integ_qunit2 && rm -rf ~/.mozilla && npm run testee:none && rm -rf ~/.mozilla && npm run testee:qunit && rm -rf ~/.mozilla && npm run testee:mocha && rm -rf ~/.mozilla && npm run testee:jasmine && rm -rf ~/.mozilla && npm run testee:jasmine2",
"testee": "npm run testee:integ_qunit1 && npm run testee:integ_qunit2 && npm run testee:none && npm run testee:qunit && npm run testee:qunit2 && npm run testee:mocha && npm run testee:jasmine && npm run testee:jasmine2",
"testee:integ_qunit1": "testee qunit1_tests.html --browsers firefox",
"testee:integ_qunit2": "testee qunit2_tests.html --browsers firefox",
"testee:none": "testee test/adapters/none.html --browsers firefox",
"testee:qunit": "testee test/adapters/qunit.html --browsers firefox",
"testee:qunit2": "testee test/adapters/qunit2.html --browsers firefox",
"testee:mocha": "testee test/adapters/mocha.html --browsers firefox",
"testee:jasmine": "testee test/adapters/jasmine.html --browsers firefox",
"testee:jasmine2": "testee test/adapters/jasmine2.html --browsers firefox",
"test": "npm run lint && npm run testee",
"lint": "eslint browser/adapters/*.js *.js",
"release:patch": "npm version patch && npm publish",
"release:minor": "npm version minor && npm publish",
"release:major": "npm version major && npm publish",
"build": "node build.js",
"document": "./node_modules/.bin/documentjs",
"document:force": "./node_modules/.bin/documentjs --f",
"document:publish": "node publish-docs.js",
"develop": "done-serve --static --develop --port 8080",
"release:pre": "npm version prerelease && npm publish"
},
"main": "dist/cjs/funcunit.js",
"dependencies": {
"syn": "^0.14.1"
},
"devDependencies": {
"can-define": "^0.8.0",
"can-zone": "^0.4.4",
"chai": "^3.5.0",
"documentjs": "^0.3.0-pre.4",
"done-serve": "^0.2.5",
"donejs-cli": "^0.9.5",
"eslint": "^5.0.0",
"generator-donejs": "^0.9.0",
"jasmine": "^2.5.2",
"jquery": "1.11.0",
"jquerypp": "^2.0.2",
"less": "^1.7.0",
"shelljs": "^0.7.8",
"steal": "^2.0.0",
"steal-css": "^1.0.0",
"steal-jasmine": "0.0.3",
"steal-mocha": "0.0.3",
"steal-qunit": "^1.0.0",
"steal-qunit2": "^2.0.0",
"steal-tools": "^2.0.0",
"testee": "^0.9.1"
},
"steal": {
"main": "funcunit",
"map": {
"chai": "chai/chai"
},
"npmIgnore": [
"documentjs",
"steal",
"steal-tools",
"testee"
],
"plugins": [
"steal-css"
]
}
}