-
Notifications
You must be signed in to change notification settings - Fork 25
/
Copy pathpackage.json
54 lines (54 loc) · 1.06 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
{
"name": "autoprefixer-loader",
"version": "3.2.0",
"description": "[deprecated] Autoprefixer loader for webpack",
"main": "index.js",
"author": "Pascal Hartig <[email protected]>",
"license": "MIT",
"repository": {
"type": "git",
"url": "[email protected]:passy/autoprefixer-loader"
},
"bugs": {
"url": "https://github.com/passy/autoprefixer-loader/issues"
},
"dependencies": {
"autoprefixer": "^6.0.2",
"loader-utils": "^0.2.11",
"postcss": "^5.0.4",
"postcss-safe-parser": "^1.0.1"
},
"devDependencies": {
"css-loader": "^0.17.0",
"fs-extra": "^0.24.0",
"gulp": "^3.9.0",
"gulp-mocha": "^2.1.3",
"raw-loader": "^0.5.1",
"should": "^7.1.0",
"webpack-stream": "^2.1.0",
"xo": "^0.8.0"
},
"keywords": [
"webpack",
"loader",
"autoprefixer"
],
"files": [
"index.js"
],
"xo": {
"space": 4,
"rules": {
"comma-dangle": [
2,
"always-multiline"
]
},
"ignores": [
"build/**"
]
},
"scripts": {
"test": "xo && gulp"
}
}