-
Notifications
You must be signed in to change notification settings - Fork 19
/
package.json
117 lines (117 loc) · 2.96 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
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
{
"name": "facepaint",
"version": "1.2.1",
"description": "Responsive style values for css-in-js.",
"main": "dist/index.cjs.js",
"module": "dist/index.es.js",
"files": [
"src",
"dist"
],
"scripts": {
"build": "npm-run-all clean rollup rollup:umd",
"clean": "rimraf dist",
"test": "jest --coverage --no-cache --ci --runInBand",
"rollup": "rollup -c rollup.config.js",
"watch": "rollup -c rollup.config.js --watch",
"rollup:umd": "cross-env UMD=true rollup -c rollup.config.js"
},
"devDependencies": {
"babel-cli": "^6.24.1",
"babel-eslint": "^7.2.3",
"babel-jest": "^20.0.3",
"babel-plugin-emotion": "^8.0.6",
"babel-plugin-transform-define": "^1.3.0",
"babel-preset-env": "^1.5.1",
"babel-preset-react": "^6.24.1",
"codecov": "^2.3.1",
"cross-env": "^5.0.5",
"css": "^2.2.1",
"emotion": "^9.2.12",
"eslint": "^4.5.0",
"eslint-config-prettier": "^2.3.0",
"eslint-config-react": "^1.1.7",
"eslint-config-standard": "^10.2.1",
"eslint-config-standard-react": "^5.0.0",
"eslint-plugin-import": "^2.7.0",
"eslint-plugin-node": "^5.1.1",
"eslint-plugin-prettier": "^2.2.0",
"eslint-plugin-promise": "^3.5.0",
"eslint-plugin-react": "^7.3.0",
"eslint-plugin-standard": "^3.0.1",
"jest": "^20.0.4",
"jest-cli": "^20.0.4",
"jest-emotion": "^9.2.11",
"jest-styled-components": "^4.9.0",
"npm-run-all": "^4.0.2",
"prettier": "^1.7.4",
"prettier-eslint-cli": "^4.0.3",
"react": "^16.0.0",
"react-dom": "^16.0.0",
"react-test-renderer": "^16.0.0",
"rimraf": "^2.6.1",
"rollup": "^0.43.0",
"rollup-plugin-babel": "^2.7.1",
"rollup-plugin-uglify": "^2.0.1",
"rollup-watch": "^4.3.1",
"styled-components": "^2.2.1"
},
"author": "Kye Hohenberger",
"homepage": "https://github.com/emotion-js/facepaint",
"license": "MIT",
"repository": "https://github.com/emotion-js/facepaint",
"keywords": [
"styles",
"emotion",
"react",
"css",
"css-in-js"
],
"bugs": {
"url": "https://github.com/emotion-js/facepaint/issues"
},
"eslintConfig": {
"extends": [
"standard",
"standard-react",
"prettier",
"prettier/react"
],
"plugins": [
"prettier"
],
"parser": "babel-eslint",
"rules": {
"prettier/prettier": [
"error",
{
"singleQuote": true,
"semi": false
}
],
"react/prop-types": 0,
"react/no-unused-prop-types": 0,
"standard/computed-property-even-spacing": 0,
"no-template-curly-in-string": 0
},
"overrides": [
{
"files": [
"*.test.js"
],
"env": {
"jest": true
}
}
]
},
"jest": {
"transform": {
"^.+\\.js?$": "babel-jest"
},
"moduleNameMapper": {
"^emotion-theming$": "<rootDir>/packages/facepaint/src"
},
"setupTestFrameworkScriptFile": "<rootDir>/test/setup.js"
}
}