forked from ulpian/node-htmlprocessor
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
49 lines (49 loc) · 1.16 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": "htmlprocessor",
"description": "Process html file using special comments",
"version": "0.2.0",
"author": {
"name": "Denis Ciccale",
"email": "[email protected]",
"url": "http://twitter.com/tdecs"
},
"repository": {
"type": "git",
"url": "git://github.com/dciccale/node-htmlprocessor.git"
},
"bugs": {
"url": "https://github.com/dciccale/node-htmlprocessor/issues"
},
"licenses": [
{
"type": "MIT",
"url": "https://github.com/dciccale/node-htmlprocessor/blob/master/LICENSE-MIT"
}
],
"scripts": {
"test": "./node_modules/.bin/mocha",
"coverage": "./node_modules/.bin/istanbul cover ./node_modules/.bin/_mocha -- --recursive",
"coveralls": "npm run coverage && cat ./coverage/lcov.info | ./node_modules/.bin/coveralls"
},
"main": "./lib/htmlprocessor",
"bin": {
"htmlprocessor": "./bin/htmlprocessor"
},
"keywords": [
"process",
"html",
"build",
"buildtime",
"environment",
"target",
"optimize"
],
"dependencies": {
"lodash": "~2.4.1"
},
"devDependencies": {
"coveralls": "^2.11.3",
"istanbul": "^0.3.17",
"mocha": "^2.2.5"
}
}