-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
45 lines (45 loc) · 1.13 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
{
"name": "postcss-modules-values-replace",
"version": "4.2.0",
"description": "PostCSS plugin to work around CSS Modules values limitations",
"keywords": [
"postcss",
"css",
"postcss-plugin",
"css-modules"
],
"files": [
"index.js"
],
"author": "Eugene Datsky <eugene@datsky.ru>",
"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": "^5.12.0",
"es6-promisify": "^7.0.0",
"icss-utils": "^5.1.0",
"loader-utils": "^3.2.1",
"postcss-values-parser": "^6.0.2"
},
"devDependencies": {
"eslint": "^8.36.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-plugin-import": "^2.27.5",
"vitest": "^2.0.0"
},
"peerDependencies": {
"postcss": "^8.2.9"
},
"scripts": {
"lint": "eslint *.js",
"prepublishOnly": "npm run lint && npm test -- --run",
"test": "vitest"
},
"eslintConfig": {
"extends": "eslint-config-airbnb-base"
}
}