forked from postcss/autoprefixer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
86 lines (86 loc) · 1.88 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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
{
"name": "autoprefixer",
"version": "7.1.1",
"description": "Parse CSS and add vendor prefixes to CSS rules using values from the Can I Use website",
"keywords": [
"autoprefixer",
"css",
"prefix",
"postcss",
"postcss-plugin"
],
"author": "Andrey Sitnik <andrey@sitnik.ru>",
"license": "MIT",
"repository": "postcss/autoprefixer",
"dependencies": {
"babel-register": "^6.24.0",
"browserslist": "^2.1.3",
"caniuse-lite": "^1.0.30000670",
"normalize-range": "^0.1.2",
"num2fraction": "^1.2.2",
"postcss": "^6.0.1",
"postcss-value-parser": "^3.2.3"
},
"devDependencies": {
"babel-eslint": "^7.2.3",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-preset-env": "^1.4.0",
"browserify": "^14.3.0",
"eslint": "^3.19.0",
"eslint-config-postcss": "^2.0.2",
"fs-extra": "^3.0.1",
"gulp": "^3.9.1",
"gulp-babel": "^6.1.2",
"gulp-coffee": "^2.3.4",
"gulp-json-editor": "^2.2.1",
"gulp-replace": "^0.5.4",
"jest": "^20.0.3",
"lint-staged": "^3.4.2",
"pre-commit": "^1.2.2",
"vinyl-source-stream": "^1.1.0"
},
"scripts": {
"lint-staged": "lint-staged",
"lint": "eslint *.js lib/*.js data/*.js test/*.js",
"test": "jest && npm run lint && gulp"
},
"lint-staged": {
"*.js": "eslint"
},
"pre-commit": [
"lint-staged"
],
"eslintConfig": {
"extends": "eslint-config-postcss",
"parser": "babel-eslint",
"rules": {
"complexity": "off",
"camelcase": "off"
},
"env": {
"jest": true
}
},
"babel": {
"presets": [
[
"env",
{
"targets": {
"browsers": "last 1 version",
"node": 4
},
"loose": true
}
]
],
"plugins": [
[
"transform-class-properties",
{
"spec": true
}
]
]
}
}