1 |
3a515b92
|
cagy
|
{
|
2 |
|
|
"name": "html-entities",
|
3 |
|
|
"version": "1.2.1",
|
4 |
|
|
"description": "Faster HTML entities encode/decode library.",
|
5 |
|
|
"keywords": [
|
6 |
|
|
"html",
|
7 |
|
|
"html entities",
|
8 |
|
|
"html entities encode",
|
9 |
|
|
"html entities decode",
|
10 |
|
|
"entities",
|
11 |
|
|
"entities encode",
|
12 |
|
|
"entities decode"
|
13 |
|
|
],
|
14 |
|
|
"author": {
|
15 |
|
|
"name": "Marat Dulin",
|
16 |
|
|
"email": "mdevils@yandex.ru"
|
17 |
|
|
},
|
18 |
|
|
"dependencies": {},
|
19 |
|
|
"devDependencies": {
|
20 |
|
|
"chai": "^1.9.1",
|
21 |
|
|
"mocha": "^1.21.4",
|
22 |
|
|
"unit-coverage": "^3.0.1",
|
23 |
|
|
"node-html-encoder": "*",
|
24 |
|
|
"entities": "*",
|
25 |
|
|
"coveralls": "^2.11.2"
|
26 |
|
|
},
|
27 |
|
|
"repository": {
|
28 |
|
|
"type": "git",
|
29 |
|
|
"url": "https://github.com/mdevils/node-html-entities.git"
|
30 |
|
|
},
|
31 |
|
|
"main": "index",
|
32 |
|
|
"engines": [
|
33 |
|
|
"node >= 0.4.0"
|
34 |
|
|
],
|
35 |
|
|
"unit-coverage": {
|
36 |
|
|
"common": [
|
37 |
|
|
"-s",
|
38 |
|
|
"lib/**/*.js",
|
39 |
|
|
"-t",
|
40 |
|
|
"test/**/*.js"
|
41 |
|
|
]
|
42 |
|
|
},
|
43 |
|
|
"scripts": {
|
44 |
|
|
"test": "mocha --recursive -R spec test",
|
45 |
|
|
"benchmark": "node benchmark/benchmark",
|
46 |
|
|
"coverage": "unit-coverage run -p common",
|
47 |
|
|
"coverage-html": "unit-coverage run -p common -r html -o coverage.html",
|
48 |
|
|
"travis": "npm test && unit-coverage run -p common -r lcov -o coverage.lcov && cat coverage.lcov | coveralls"
|
49 |
|
|
},
|
50 |
|
|
"files": [
|
51 |
|
|
"index.js",
|
52 |
|
|
"lib",
|
53 |
|
|
"LICENSE"
|
54 |
|
|
],
|
55 |
|
|
"license": "MIT"
|
56 |
|
|
}
|