forked from johanholmerin/style9
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
53 lines (53 loc) · 1.19 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
{
"name": "style9",
"version": "0.5.5",
"description": "CSS-in-JS compiler",
"author": "Johan Holmerin <[email protected]>",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/johanholmerin/style9.git"
},
"keywords": [
"styles",
"css",
"css-in-js",
"babel",
"babel-plugin",
"gatsby",
"gatsby-plugin",
"next",
"nextjs",
"nextjs-plugin",
"webpack",
"rollup",
"rollup-plugin"
],
"dependencies": {
"@babel/core": "^7.10.4",
"@babel/types": "^7.8.3",
"@rollup/pluginutils": "^3.0.4",
"known-css-properties": "^0.19.0",
"murmurhash-js": "^1.0.0",
"postcss": "^7.0.32",
"postcss-discard-duplicates": "^4.0.2",
"postcss-selector-parser": "^6.0.2",
"sort-css-media-queries": "^1.5.0",
"webpack-virtual-modules": "^0.2.2"
},
"devDependencies": {
"@babel/plugin-transform-modules-commonjs": "^7.10.4",
"ava": "^3.13.0",
"eslint": "^6.8.0",
"rollup": "^1.29.0",
"webpack": "^4.43.0",
"webpack-cli": "^3.3.11"
},
"scripts": {
"test": "ava",
"lint": "eslint '{,!(node_modules|build)/**/}*.js'"
},
"ava": {
"files": ["__tests__/**/*"]
}
}