-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 1.01 KB
/
package.json
File metadata and controls
39 lines (39 loc) · 1.01 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
{
"name": "rescript-use-postcss-config",
"version": "1.0.0",
"description": "Use your own PostCSS configuration in Create React App",
"author": "Jonathan Neal <jonathantneal@hotmail.com>",
"license": "CC0-1.0",
"repository": "jsxtools/rescript-use-postcss-config",
"homepage": "https://github.com/jsxtools/rescript-use-postcss-config#readme",
"bugs": "https://github.com/jsxtools/rescript-use-postcss-config/issues",
"main": "index.js",
"files": [
"index.js"
],
"scripts": {
"test": "eslint index.js --cache --ignore-path .gitignore --resolve-plugins-relative-to node_modules"
},
"devDependencies": {
"eslint": "^6.1.0"
},
"peerDependencies": {
"postcss-load-config": "^2"
},
"eslintConfig": {
"env": {
"node": true
},
"extends": "eslint:recommended",
"parserOptions": {
"ecmaVersion": 10,
"sourceType": "module",
"ecmaFeatures": {
"impliedStrict": true
}
}
},
"dependencies": {
"postcss-load-config": "^2.1.0"
}
}