-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
49 lines (49 loc) · 1.05 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
{
"name": "postcss-will-change-transition",
"version": "1.2.0",
"description": "PostCSS plugin to generate will-change for transition props",
"keywords": [
"postcss",
"css",
"postcss-plugin",
"will-change",
"transition"
],
"author": "Anatoly Ostrovsky <[email protected]>",
"license": "MIT",
"repository": "megatolya/postcss-will-change-transition.git",
"dependencies": {
"css-properties-values": "1.0.0",
"postcss": "^6.0.1"
},
"devDependencies": {
"eslint": "^3.19.0",
"eslint-config-postcss": "^2.0.2",
"jest": "^20.0.0",
"lint-staged": "^3.4.1",
"pre-commit": "^1.2.2"
},
"scripts": {
"lint-staged": "lint-staged",
"test": "jest --colors --silent=false --coverage index.test.js && eslint *.js"
},
"jest": {
"coverageThreshold": {
"global": {
"statements": 100
}
}
},
"eslintConfig": {
"extends": "eslint-config-postcss/es5",
"env": {
"jest": true
}
},
"lint-staged": {
"*.js": "eslint"
},
"pre-commit": [
"lint-staged"
]
}