This repository was archived by the owner on Jan 16, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 18
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.38 KB
/
package.json
File metadata and controls
54 lines (54 loc) · 1.38 KB
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
{
"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": {
"postcss-loader": "^3.0.0"
},
"devDependencies": {
"@babel/core": "7.4.4",
"@babel/preset-env": "7.4.4",
"babel-eslint": "10.0.1",
"eslint": "5.16.0",
"eslint-config-dev": "2.0.0",
"pre-commit": "1.2.2",
"rollup": "1.11.3",
"rollup-plugin-babel": "4.3.2"
},
"eslintConfig": {
"extends": "dev",
"parser": "babel-eslint"
},
"keywords": [
"react",
"create-react-app",
"react-app-rewire",
"rewire",
"postcss",
"postcss-loader",
"postcss-plugin",
"css"
]
}