-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
52 lines (52 loc) · 1.36 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": "done-css",
"version": "3.1.0",
"description": "A CSS plugin, for css",
"main": "css.js",
"scripts": {
"publish": "git push origin && git push origin --tags",
"release:patch": "npm version patch && npm publish",
"release:minor": "npm version minor && npm publish",
"release:major": "npm version major && npm publish",
"test": "npm run test:unit && npm run test:integration && npm run test:live-reload",
"test:unit": "testee test/test.html --browsers firefox --reporter Spec",
"test:integration": "testee test/test-integration.html --browsers firefox --reporter Spec",
"test:live-reload": "testee test/test-live-reload.html --browsers firefox --reporter Spec"
},
"repository": {
"type": "git",
"url": "https://github.com/donejs/css.git"
},
"keywords": [
"StealJS",
"SystemJS",
"CSS"
],
"author": "Bitovi",
"license": "MIT",
"bugs": {
"url": "https://github.com/donejs/css/issues"
},
"homepage": "https://github.com/donejs/css",
"steal": {
"ext": {
"css": "done-css"
},
"map": {
"$css": "done-css"
},
"plugins": [
"steal-css"
]
},
"devDependencies": {
"funcunit": "^3.0.0",
"steal": "^2.0.0",
"steal-qunit": "^1.0.0",
"steal-test-helpers": "^0.2.0",
"testee": "^0.9.0"
},
"dependencies": {
"steal-css": "^1.1.1"
}
}