forked from csstools/react-app-rewire-postcss
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
48 lines (48 loc) · 1.22 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
{
"name": "react-app-rewire-postcss",
"version": "4.0.0",
"description": "Configure PostCSS in Create React App without ejecting",
"author": "Jonathan Neal <jonathantneal@hotmail.com>",
"license": "CC0-1.0",
"repository": "csstools/react-app-rewire-postcss",
"homepage": "https://github.com/csstools/react-app-rewire-postcss#readme",
"bugs": "https://github.com/csstools/react-app-rewire-postcss/issues",
"main": "index.cjs.js",
"module": "index.es.mjs",
"files": [
"index.cjs.js",
"index.cjs.js.map",
"index.es.mjs",
"index.es.mjs.map"
],
"scripts": {
"prepublishOnly": "npm test",
"pretest": "rollup -c .rollup.js --silent",
"test": "echo 'Running tests...'; npm run test:js",
"test:js": "eslint *.js --cache --ignore-path .gitignore --quiet"
},
"engines": {
"node": ">=8.0.0"
},
"dependencies": {},
"devDependencies": {
"eslint": "5.16.0",
"eslint-config-dev": "2.0.0",
"postcss-loader": "^4.1.0",
"pre-commit": "1.2.2",
"rollup": "1.11.3"
},
"eslintConfig": {
"extends": "dev"
},
"keywords": [
"react",
"create-react-app",
"react-app-rewire",
"rewire",
"postcss",
"postcss-loader",
"postcss-plugin",
"css"
]
}