-
-
Notifications
You must be signed in to change notification settings - Fork 11
/
package.json
90 lines (90 loc) · 1.89 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
86
87
88
89
90
{
"name": "styled-jsx-postcss",
"version": "0.2.0",
"description": "Babel transform to run PostCSS on styled-jsx",
"author": "Giuseppe Gurgone",
"license": "MIT",
"repository": "giuseppeg/styled-jsx-postcss",
"files": [
"dist",
"server.js",
"babel.js",
"style.js"
],
"scripts": {
"prebuild": "mkdir -p dist",
"build": "babel src -d dist",
"prepublish": "npm run build",
"test": "ava && xo"
},
"keywords": [
"babel",
"styled-jsx",
"cssinjs",
"css in js",
"styled components",
"react",
"postcss",
"zeit"
],
"devDependencies": {
"ava": "^0.17.0",
"babel-cli": "^6.18.0",
"babel-core": "^6.21.0",
"babel-generator": "^6.24.0",
"babel-plugin-transform-async-to-generator": "^6.16.0",
"babel-plugin-transform-es2015-destructuring": "^6.19.0",
"babel-plugin-transform-es2015-modules-commonjs": "^6.18.0",
"babel-plugin-transform-es2015-parameters": "^6.21.0",
"babel-plugin-transform-object-rest-spread": "^6.20.2",
"babel-register": "^6.18.0",
"mz": "^2.6.0",
"postcss-cssnext": "^2.9.0",
"postcss-nested": "^1.0.0",
"xo": "^0.17.1"
},
"dependencies": {
"babel-traverse": "^6.21.0",
"babylon": "^6.14.1",
"postcss": "^5.2.8",
"postcss-load-plugins": "^2.2.0",
"styled-jsx": "^0.5.7",
"deasync": "^0.1.9"
},
"ava": {
"require": [
"babel-register"
]
},
"postcss": {
"plugins": {
"postcss-cssnext": {},
"postcss-nested": {}
}
},
"xo": {
"esnext": true,
"space": true,
"semicolon": false,
"ignores": [
"lib/**",
"test/fixtures/**"
],
"envs": [
"node",
"browser"
],
"rules": {
"eqeqeq": [
"error",
"always",
{
"null": "ignore"
}
],
"no-eq-null": 0,
"import/no-unresolved": 0,
"new-cap": 0
}
}
}