-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
85 lines (85 loc) · 2.15 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
{
"name": "steal-css",
"version": "1.3.2",
"description": "CSS plugin for StealJS",
"main": "css.js",
"scripts": {
"build-1": "node test/css-paths/build.js",
"build-2": "steal-tools build --config test/css-before-js/stealconfig.js --main main --baseUrl test/css-before-js/ --minify false",
"build-3": "node test/css-instantiated/build.js",
"test": "npm run eslint && npm run build-1 && npm run build-2 && npm run build-3 && npm run run-tests",
"run-tests": "testee test/test.html --browsers firefox --reporter Spec",
"http-server": "http-server -p 3000 --silent",
"saucelabs": "npm run build-1 && npm run build-2 && npm run build-3 && node test/saucelabs",
"document": "bit-docs",
"eslint": "eslint css.js"
},
"repository": {
"type": "git",
"url": "https://github.com/stealjs/steal-css.git"
},
"keywords": [
"StealJS",
"CSS"
],
"author": "Bitovi",
"license": "MIT",
"bugs": {
"url": "https://github.com/stealjs/steal-css/issues"
},
"homepage": "https://github.com/stealjs/steal-css",
"devDependencies": {
"async": "^2.3.0",
"bit-docs": "0.0.7",
"eslint": "^4.1.1",
"http-server": "^0.10.0",
"qunitjs": "~2.4.0",
"saucelabs": "^1.4.0",
"steal": "^1.0.0",
"steal-qunit": "^1.0.0",
"steal-test-helpers": "^0.2.0",
"steal-tools": "^1.0.0",
"test-saucelabs": "0.0.2",
"testee": "^0.9.1",
"wd": "^1.2.0"
},
"steal": {
"ext": {
"css": "steal-css"
},
"map": {
"$css": "steal-css"
}
},
"bit-docs": {
"dependencies": {
"bit-docs-glob-finder": "^0.0.5",
"bit-docs-dev": "^0.0.3",
"bit-docs-js": "^0.0.3",
"bit-docs-generate-readme": "^0.0.8"
},
"glob": {
"pattern": "**/*.{js,md}",
"ignore": "node_modules/**/*"
},
"readme": {
"apis": "./docs/apis.json"
},
"parent": "steal-css"
},
"eslintConfig": {
"extends": "eslint:recommended",
"rules": {
"no-param-reassign": "error",
"no-useless-escape": "off"
},
"env": {
"node": true,
"browser": true
},
"globals": {
"doneSsr": true,
"Promise": true
}
}
}