-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
60 lines (60 loc) · 1.35 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
{
"name": "css-zero",
"version": "0.2.0",
"description": "Zero-runtime CSS-in-JS",
"keywords": [
"css-in-js",
"stylesheet",
"css",
"atomic",
"zero-runtime"
],
"license": "MIT",
"author": "Craig Cavalier",
"main": "src/index.js",
"typings": "src/index.d.ts",
"jest": {
"testMatch": [
"**/__tests__/**/*.test.[jt]s?(x)",
"**/?(*.)+(spec|test).[jt]s?(x)"
],
"testPathIgnorePatterns": [
"example"
]
},
"babel": {
"presets": [
"@babel/preset-env",
"@babel/preset-react"
]
},
"prettier": {
"singleQuote": true,
"printWidth": 100,
"trailingComma": "es5",
"bracketSpacing": false
},
"scripts": {
"test": "jest"
},
"devDependencies": {
"@babel/preset-env": "^7.7.1",
"@babel/preset-react": "^7.7.0",
"babel-jest": "^24.9.0",
"babel-plugin-remove-unused-vars": "^2.2.0",
"babel-plugin-tester": "^7.0.4",
"jest": "^24.9.0"
},
"dependencies": {
"@babel/core": "^7.7.2",
"@babel/generator": "^7.7.2",
"@babel/helper-module-imports": "^7.7.0",
"@babel/plugin-proposal-export-namespace-from": "^7.5.2",
"@babel/plugin-syntax-dynamic-import": "^7.2.0",
"@babel/plugin-transform-modules-commonjs": "^7.7.0",
"babel-plugin-macros": "^2.6.2",
"css": "^2.2.4",
"fnv1a": "^1.0.1",
"stylis": "^3.5.4"
}
}