-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
52 lines (52 loc) · 1.48 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
{
"name": "steal-conditional",
"version": "1.1.3",
"description": "Conditional loading",
"main": "conditional.js",
"directories": {
"test": "test"
},
"scripts": {
"postversion": "git push --tags && git push",
"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",
"jshint": "jshint conditional.js test/. --config",
"pretest": "cp conditional.js test/relative-conditions/conditional.js",
"test:unit": "testee test/unit.html --browsers firefox --reporter Spec",
"test:composite": "testee test/composite.html --browsers firefox --reporter Spec",
"test": "npm run jshint && npm run test:unit && npm run test:composite"
},
"repository": {
"type": "git",
"url": "https://github.com/stealjs/conditional.git"
},
"keywords": [
"StealJS"
],
"author": "Bitovi",
"license": "MIT",
"bugs": {
"url": "https://github.com/stealjs/conditional/issues"
},
"homepage": "https://github.com/stealjs/conditional",
"devDependencies": {
"glob": "^7.1.1",
"jshint": "^2.9.1",
"qunit-composite": "^2.0.0",
"steal": "^1.12.6",
"steal-css": "^1.3.2",
"steal-qunit": "^1.0.2",
"testdouble": "^3.0.0",
"testee": "^0.9.0"
},
"steal": {
"plugins": [
"steal-css"
],
"map": {
"testdouble": "testdouble/dist/testdouble"
}
}
}