forked from postcss/autoprefixer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
44 lines (44 loc) · 1.08 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
{
"name": "autoprefixer",
"version": "6.7.5",
"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 <[email protected]>",
"license": "MIT",
"repository": "postcss/autoprefixer",
"dependencies": {
"browserslist": "^1.7.5",
"caniuse-db": "^1.0.30000624",
"coffee-script": "^1.12.4",
"normalize-range": "^0.1.2",
"num2fraction": "^1.2.2",
"postcss": "^5.2.15",
"postcss-value-parser": "^3.2.3"
},
"devDependencies": {
"browserify": "^14.1.0",
"eslint-config-postcss": "^2.0.2",
"fs-extra": "^2.0.0",
"gulp": "^3.9.1",
"gulp-coffee": "^2.3.3",
"gulp-eslint": "^3.0.1",
"gulp-json-editor": "^2.2.1",
"gulp-mocha": "^3.0.1",
"gulp-replace": "^0.5.4",
"mocha": "^3.2.0",
"should": "^11.2.0",
"vinyl-source-stream": "^1.1.0"
},
"scripts": {
"test": "gulp"
},
"eslintConfig": {
"extends": "eslint-config-postcss/es5"
}
}