-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
60 lines (60 loc) · 1.24 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
{
"name": "postcss-icss-keyframes",
"version": "0.2.1",
"description": "PostCSS plugin for css-modules to local-scope keyframes",
"main": "lib/index.js",
"files": [
"lib"
],
"scripts": {
"build": "babel --out-dir lib src",
"test": "jest --coverage",
"precommit": "lint-staged",
"prepublish": "yarn test && yarn run build"
},
"lint-staged": {
"*.js": [
"eslint",
"prettier --write",
"git add"
]
},
"eslintConfig": {
"parserOptions": {
"ecmaVersion": 6,
"sourceType": "module"
},
"extends": "eslint:recommended"
},
"babel": {
"presets": [
[
"env",
{
"targets": {
"node": 4
}
}
]
]
},
"repository": "css-modules/postcss-icss-keyframes",
"author": "Bogdan Chadkin <[email protected]>",
"license": "MIT",
"devDependencies": {
"babel-cli": "^6.24.1",
"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",
"postcss": "^6.0.2",
"postcss-value-parser": "^3.3.0"
}
}