-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
44 lines (44 loc) · 851 Bytes
/
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
{
"name": "style-component-loader",
"version": "1.0.1",
"description": "Generate dynamic stylesheets with replaceable tokens",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
},
"license": "MIT",
"author": {
"name": "Keith McKnight",
"email": "[email protected]"
},
"keywords": [
"style",
"sass",
"scss",
"css",
"webpack",
"loader"
],
"files": [
"/index.js",
"/replace-tokens.js"
],
"dependencies": {
"loader-utils": "0.2.x",
"lodash": "4.x",
"style-loader": "^0.13.1"
},
"devDependencies": {
"css-loader": "^0.23.1",
"gulp": "^3.9.1",
"node-sass": "^3.8.0",
"sass-loader": "^4.0.0",
"webpack": "^1.13.1",
"webpack-stream": "^3.2.0"
},
"eslintConfig": {
"env": {
"node": true
}
}
}