-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
53 lines (53 loc) · 1.33 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
{
"name": "steal-qunit",
"version": "2.0.0",
"description": "QUnit and StealJS",
"main": "steal-qunit",
"scripts": {
"test": "npm run test:browser",
"publish": "git push origin && git push origin --tags",
"test:browser": "testee test/test.html --browsers firefox --reporter Spec",
"test:live-reload": "testee test/test-live-reload.html --browsers firefox --reporter Spec",
"release:pre": "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"
},
"repository": {
"type": "git",
"url": "https://github.com/bitovi/steal-qunit.git"
},
"keywords": [
"StealJS",
"QUnit"
],
"author": "Bitovi",
"license": "MIT",
"bugs": {
"url": "https://github.com/bitovi/steal-qunit/issues"
},
"homepage": "https://github.com/bitovi/steal-qunit",
"devDependencies": {
"funcunit": "^3.0.0",
"steal": "^2.0.0",
"testee": "^0.9.0"
},
"dependencies": {
"qunit": "^2.0.0",
"steal-css": "^1.0.0"
},
"steal": {
"plugins": [
"steal-css"
],
"meta": {
"qunit#./qunit/qunit": {
"format": "global",
"exports": "QUnit",
"deps": [
"steal-qunit/add-dom"
]
}
}
}
}