forked from princed/postcss-modules-values-replace
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
43 lines (43 loc) · 1.09 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
{
"name": "postcss-modules-values-replace",
"version": "3.3.0",
"description": "PostCSS plugin to work around CSS Modules values limitations",
"keywords": [
"postcss",
"css",
"postcss-plugin",
"css-modules"
],
"files": [
"index.js"
],
"author": "Eugene Datsky <[email protected]>",
"license": "ISC",
"repository": "princed/postcss-modules-values-replace",
"bugs": {
"url": "https://github.com/princed/postcss-modules-values-replace/issues"
},
"homepage": "https://github.com/princed/postcss-modules-values-replace",
"dependencies": {
"enhanced-resolve": "^3.1.0",
"es6-promisify": "^5.0.0",
"icss-utils": "^4.0.0",
"loader-utils": "^2.0.0",
"postcss": "^7.0.0",
"postcss-values-parser": "^1.3.1"
},
"devDependencies": {
"ava": "^0.24.0",
"eslint": "^4.15.0",
"eslint-config-airbnb-base": "^12.1.0",
"eslint-plugin-import": "^2.5.0"
},
"scripts": {
"lint": "eslint *.js",
"prepublish": "npm test",
"test": "npm run lint && ava"
},
"eslintConfig": {
"extends": "eslint-config-airbnb-base"
}
}