-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
49 lines (49 loc) · 1.05 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
{
"name": "cachebuster-cli",
"version": "0.2.3",
"description": "Generates hashed versions of css files and an asset manifest",
"main": "index.js",
"scripts": {
"test": "eslint . && jest --coverage"
},
"bin": {
"cachebuster": "index.js"
},
"jest": {
"verbose": true,
"testEnvironment": "node",
"testPathIgnorePatterns": [
"/node_modules/"
],
"collectCoverageFrom": [
"lib/index.js"
]
},
"keywords": [
"css",
"cachebuster",
"cli"
],
"homepage": "https://github.com/javiercf/cachebuster",
"bugs": "https://github.com/javiercf/cachebuster/issues",
"author": "Javier Cubides Ferrans <javiercferrans@gmail.com>",
"repository": {
"type": "git",
"url": "https://github.com/javiercf/cachebuster.git"
},
"license": "MIT",
"dependencies": {
"bluebird": "^3.5.0",
"chalk": "^2.0.1",
"commander": "^2.10.0"
},
"devDependencies": {
"eslint": "^4.1.1",
"jest": "^20.0.4",
"jest-cli": "^20.0.4",
"sinon": "^2.3.6"
},
"engines": {
"node": ">6.0.0"
}
}