-
Notifications
You must be signed in to change notification settings - Fork 18
/
package.json
68 lines (68 loc) · 1.36 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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
{
"name": "postcss-icss-values",
"version": "2.0.2",
"description": "PostCSS plugin for CSS Modules to pass arbitrary values between your module files",
"main": "lib/index.js",
"files": [
"lib"
],
"scripts": {
"build": "babel --out-dir lib src",
"test": "jest --coverage",
"precommit": "lint-staged",
"prepublish": "yarn run test && yarn run build"
},
"lint-staged": {
"*.js": [
"prettier --write",
"eslint",
"git add"
]
},
"eslintConfig": {
"parserOptions": {
"sourceType": "module"
},
"env": {
"es6": true
},
"extends": "eslint:recommended"
},
"babel": {
"presets": [
[
"env",
{
"targets": {
"node": 4
}
}
]
]
},
"repository": "css-modules/postcss-icss-values",
"keywords": [
"css",
"modules",
"postcss"
],
"author": "Glen Maddern and Bogdan Chadkin",
"license": "MIT",
"devDependencies": {
"babel-cli": "^6.5.2",
"babel-jest": "^20.0.3",
"babel-preset-env": "^1.5.2",
"eslint": "^4.0.0",
"husky": "^0.13.4",
"jest": "^20.0.4",
"lint-staged": "^3.6.1",
"prettier": "^1.4.4",
"strip-indent": "^2.0.0"
},
"dependencies": {
"icss-utils": "^3.0.1",
"lodash": "^4.17.4",
"postcss": "^7.0.36",
"postcss-value-parser": "^3.3.0"
}
}