-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.18 KB
/
package.json
File metadata and controls
45 lines (45 loc) · 1.18 KB
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
{
"name": "jss-from-css",
"version": "0.1.1",
"description": "Empower your JSS styles by using the best bits of ES6 and CSS",
"main": "lib/index.js",
"scripts": {
"clean": "rimraf lib dist",
"build:lib": "babel src --out-dir lib",
"build": "npm run clean && npm run build:lib",
"prepublish": "npm run build",
"example": "node examples/index.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/axept/jss-from-css.git"
},
"keywords": [
"react",
"css",
"css-in-js"
],
"author": "Originally by Glen Maddern",
"license": "MIT",
"bugs": {
"url": "https://github.com/axept/jss-from-css/issues"
},
"homepage": "https://github.com/axept/jss-from-css",
"dependencies": {
"css": "^2.2.1",
"postcss": "^5.2.14",
"postcss-nested": "^1.0.0",
"postcss-simple-vars": "^3.0.0",
"stylis": "^1.1.12"
},
"devDependencies": {
"babel": "^6.23.0",
"babel-cli": "^6.23.0",
"babel-plugin-transform-async-to-generator": "^6.22.0",
"babel-polyfill": "^6.23.0",
"babel-preset-es2015": "^6.22.0",
"babel-preset-stage-0": "^6.22.0",
"babel-register": "^6.23.0",
"rimraf": "^2.6.0"
}
}