-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
36 lines (36 loc) · 906 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
{
"name": "jss-preprocessor",
"version": "1.1.2",
"description": "Use JSS as a preprocessor to create CSS files.",
"bin": {
"jss-preprocessor": "lib/jss-preprocessor.js"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"compile": "babel --presets es2015 -d lib/ src/",
"prepublish": "npm run compile"
},
"repository": {
"type": "git",
"url": "git+https://github.com/thancock20/jss-preprocessor.git"
},
"keywords": [
"jss",
"css",
"stylesheet",
"preprocessor"
],
"author": "Todd Hancock <[email protected]> (http://www.toddhancock.net/)",
"license": "MIT",
"dependencies": {
"autoprefixer": "^6.4.1",
"commander": "^2.9.0",
"jss": "^5.4.0",
"jss-preset-default": "^0.2.0",
"postcss": "^5.1.2"
},
"devDependencies": {
"babel-cli": "^6.14.0",
"babel-preset-es2015": "^6.14.0"
}
}