forked from glebmachine/postcss-cachebuster
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
53 lines (53 loc) · 1.22 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.2.0",
"description": "Cachebusting all local files in css",
"keywords": [
"postcss",
"css",
"postcss-plugin",
"cachebuster",
"caching",
"cachefile",
"cache",
"control",
"network",
"optimize"
],
"author": "Gleb Mikheev <glebmachine@gmail.com>",
"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": "^1.0.0",
"path": "^0.12.7"
},
"devDependencies": {
"chai": "^4.0",
"eslint": "^7.32",
"eslint-config-airbnb": "^19.0.4",
"eslint-plugin-import": "^2.29.1",
"eslint-watch": "^7.0.0",
"gulp": "^5.0.0",
"gulp-eslint": "^6.0.0",
"gulp-mocha": "^10.0.1",
"gulp-postcss": "^10.0.0",
"gulp-rename": "^2.0.0",
"sinon": "^18.0",
"sinon-chai": "^3.7"
},
"peerDependencies": {
"postcss": "^8.4.31"
},
"scripts": {
"lint": "eslint --fix index.js",
"test": "gulp",
"lint:watch": "esw --fix --watch index.js"
}
}