-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
42 lines (42 loc) · 968 Bytes
/
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
{
"name": "postcss-join-transitions",
"version": "1.1.0",
"description": "PostCSS plugin that merges multiple transition rules on a selector into a single transition rule",
"keywords": [
"postcss",
"css",
"postcss-plugin",
"transition"
],
"author": "J <[email protected]>",
"license": "MIT",
"repository": "JGJP/postcss-merge-transitions",
"bugs": {
"url": "https://github.com/JGJP/postcss-merge-transitions/issues"
},
"homepage": "https://github.com/JGJP/postcss-merge-transitions",
"dependencies": {
"postcss": "^6.0.16"
},
"devDependencies": {
"eslint": "^4.18.2",
"eslint-config-postcss": "^2.0.2",
"jest": "^22.4.2"
},
"scripts": {
"test": "jest && eslint *.js"
},
"eslintConfig": {
"extends": "eslint-config-postcss/es5",
"rules": {
"max-len": 0,
"no-use-before-define": 0
},
"env": {
"jest": true
}
},
"jest": {
"testEnvironment": "node"
}
}