forked from mdevils/html-entities
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
56 lines (56 loc) · 1.25 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
54
55
56
{
"name": "html-entities",
"version": "1.2.1",
"description": "Faster HTML entities encode/decode library.",
"keywords": [
"html",
"html entities",
"html entities encode",
"html entities decode",
"entities",
"entities encode",
"entities decode"
],
"author": {
"name": "Marat Dulin",
"email": "[email protected]"
},
"dependencies": {},
"devDependencies": {
"chai": "^1.9.1",
"mocha": "^1.21.4",
"unit-coverage": "^3.0.1",
"node-html-encoder": "*",
"entities": "*",
"coveralls": "^2.11.2"
},
"repository": {
"type": "git",
"url": "https://github.com/mdevils/node-html-entities.git"
},
"main": "index",
"engines": [
"node >= 0.4.0"
],
"unit-coverage": {
"common": [
"-s",
"lib/**/*.js",
"-t",
"test/**/*.js"
]
},
"scripts": {
"test": "mocha --recursive -R spec test",
"benchmark": "node benchmark/benchmark",
"coverage": "unit-coverage run -p common",
"coverage-html": "unit-coverage run -p common -r html -o coverage.html",
"travis": "npm test && unit-coverage run -p common -r lcov -o coverage.lcov && cat coverage.lcov | coveralls"
},
"files": [
"index.js",
"lib",
"LICENSE"
],
"license": "MIT"
}