-
Notifications
You must be signed in to change notification settings - Fork 11
/
package.json
53 lines (53 loc) · 1.23 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
{
"name": "postcss-cachebuster",
"version": "0.1.6",
"description": "Cachebusting all local files in css",
"keywords": [
"postcss",
"css",
"postcss-plugin",
"cachebuster",
"caching",
"cachefile",
"cache",
"control",
"network",
"optimize"
],
"author": "Gleb Mikheev <[email protected]>",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/glebmachine/postcss-cachebuster.git"
},
"bugs": {
"url": "https://github.com/glebmachine/postcss-cachebuster/issues"
},
"homepage": "https://github.com/glebmachine/postcss-cachebuster",
"dependencies": {
"canonical-path": "0.0.2",
"chalk": "^1.1.1",
"path": "^0.12.7",
"postcss": "^5.0.12"
},
"devDependencies": {
"chai": "^4.0",
"sinon": "^4.0",
"sinon-chai": "^3.0",
"eslint": "2.13.1",
"eslint-config-airbnb": "9.0.1",
"eslint-plugin-import": "1.9.2",
"eslint-watch": "2.1.11",
"git-hooks": "1.0.2",
"gulp": "3.9.0",
"gulp-eslint": "0.14.0",
"gulp-mocha": "2.1.2",
"gulp-postcss": "6.0.1",
"gulp-rename": "1.2.2"
},
"scripts": {
"lint": "eslint --fix index.js",
"test": "gulp",
"lint:watch": "esw --fix --watch index.js"
}
}