Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
Download
81146 views
1
{
2
"name": "entities",
3
"version": "1.0.0",
4
"description": "Encode & decode XML/HTML entities with ease",
5
"author": {
6
"name": "Felix Boehm",
7
"email": "[email protected]"
8
},
9
"keywords": [
10
"html",
11
"xml",
12
"entity",
13
"encoding"
14
],
15
"main": "./index.js",
16
"directories": {
17
"test": "test"
18
},
19
"devDependencies": {
20
"mocha": "1",
21
"mocha-lcov-reporter": "*",
22
"coveralls": "*",
23
"istanbul": "*",
24
"jshint": "2"
25
},
26
"scripts": {
27
"test": "mocha && npm run lint",
28
"lint": "jshint index.js lib/*.js test/*.js",
29
"lcov": "istanbul cover _mocha --report lcovonly -- -R spec",
30
"coveralls": "npm run lint && npm run lcov && (cat coverage/lcov.info | coveralls || exit 0)"
31
},
32
"repository": {
33
"type": "git",
34
"url": "git://github.com/fb55/node-entities.git"
35
},
36
"license": "BSD-like",
37
"jshintConfig": {
38
"eqeqeq": true,
39
"freeze": true,
40
"latedef": "nofunc",
41
"noarg": true,
42
"nonbsp": true,
43
"quotmark": "double",
44
"undef": true,
45
"unused": true,
46
"trailing": true,
47
"eqnull": true,
48
"proto": true,
49
"smarttabs": true,
50
"node": true,
51
"globals": {
52
"describe": true,
53
"it": true
54
}
55
},
56
"bugs": {
57
"url": "https://github.com/fb55/node-entities/issues"
58
},
59
"homepage": "https://github.com/fb55/node-entities",
60
"_id": "[email protected]",
61
"dist": {
62
"shasum": "b2987aa3821347fcde642b24fdfc9e4fb712bf26",
63
"tarball": "http://registry.npmjs.org/entities/-/entities-1.0.0.tgz"
64
},
65
"_from": "entities@>=1.0.0 <1.1.0",
66
"_npmVersion": "1.4.4",
67
"_npmUser": {
68
"name": "feedic",
69
"email": "[email protected]"
70
},
71
"maintainers": [
72
{
73
"name": "feedic",
74
"email": "[email protected]"
75
}
76
],
77
"_shasum": "b2987aa3821347fcde642b24fdfc9e4fb712bf26",
78
"_resolved": "https://registry.npmjs.org/entities/-/entities-1.0.0.tgz"
79
}
80
81