UNPKG

1.18 kBJSONView Raw
1{
2 "name": "entities",
3 "version": "1.1.0",
4 "description": "Encode & decode XML/HTML entities with ease",
5 "author": "Felix Boehm <me@feedic.com>",
6 "keywords": [
7 "html",
8 "xml",
9 "entity",
10 "encoding"
11 ],
12 "main": "./index.js",
13 "directories": {
14 "test": "test"
15 },
16 "devDependencies": {
17 "mocha": "1",
18 "mocha-lcov-reporter": "*",
19 "coveralls": "*",
20 "istanbul": "*",
21 "jshint": "2"
22 },
23 "scripts": {
24 "test": "mocha && npm run lint",
25 "lint": "jshint index.js lib/*.js test/*.js",
26 "lcov": "istanbul cover _mocha --report lcovonly -- -R spec",
27 "coveralls": "npm run lint && npm run lcov && (cat coverage/lcov.info | coveralls || exit 0)"
28 },
29 "repository": {
30 "type": "git",
31 "url": "git://github.com/fb55/node-entities.git"
32 },
33 "license": "BSD-like",
34 "jshintConfig": {
35 "eqeqeq": true,
36 "freeze": true,
37 "latedef": "nofunc",
38 "noarg": true,
39 "nonbsp": true,
40 "quotmark": "double",
41 "undef": true,
42 "unused": true,
43 "trailing": true,
44 "eqnull": true,
45 "proto": true,
46 "smarttabs": true,
47 "node": true,
48 "globals": {
49 "describe": true,
50 "it": true
51 }
52 }
53}