forked from bitovi/funcunit
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
83 lines (83 loc) · 2.99 KB
/
Copy pathpackage.json
File metadata and controls
83 lines (83 loc) · 2.99 KB
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
{
"name": "funcunit",
"version": "3.4.4",
"author": {
"name": "Bitovi",
"email": "contact@bitovi.com",
"web": "http://bitovi.com/"
},
"repository": {
"type": "git",
"url": "git@github.com: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:test && 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:test && 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:test": "testee test.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 jshint && npm run testee",
"jshint": "jshint *.js --config",
"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": {
"jquery": "1.11.0",
"jquerypp": "^2.0.2",
"syn": "^0.13.0"
},
"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",
"generator-donejs": "^0.9.0",
"jasmine": "^2.5.2",
"jshint": "^2.9.1",
"less": "^1.7.0",
"shelljs": "^0.7.8",
"steal": "^0.16.35",
"steal-jasmine": "0.0.3",
"steal-mocha": "0.0.3",
"steal-qunit": "^0.1.1",
"steal-qunit2": "1.0.0",
"steal-tools": "^0.16.0",
"testee": "^0.2.5"
},
"system": {
"main": "funcunit",
"map": {
"chai": "chai/chai"
},
"npmIgnore": [
"documentjs",
"steal",
"steal-tools",
"testee"
]
}
}