-
Notifications
You must be signed in to change notification settings - Fork 18
/
package.json
40 lines (40 loc) · 1.02 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
{
"name": "minimize",
"version": "2.2.0",
"description": "Minimize HTML",
"main": "./lib/minimize",
"bin": {
"minimize": "./bin/minimize"
},
"scripts": {
"test": "mocha $(find test -name '*.test.js')",
"watch": "mocha --watch $(find test -name '*.test.js')",
"coverage": "istanbul cover ./node_modules/.bin/_mocha -- $(find test -name '*.test.js')",
"test-travis": "istanbul cover node_modules/.bin/_mocha --report lcovonly -- $(find test -name '*.test.js')"
},
"dependencies": {
"argh": "^0.1.4",
"async": "^2.1.5",
"cli-color": "^1.2.0",
"diagnostics": "^1.1.0",
"emits": "^3.0.0",
"htmlparser2": "^3.9.2",
"uuid": "^3.0.0"
},
"devDependencies": {
"chai": "^4.1.0",
"istanbul": "^0.4.5",
"mocha": "^5.0.0",
"pre-commit": "^1.2.2",
"sinon": "^4.0.0",
"sinon-chai": "^2.8.0"
},
"repository": "git@github.com:Moveo/minimize.git",
"keywords": [
"minify",
"minimize",
"HTML"
],
"author": "Martijn Swaagman",
"license": "MIT"
}