forked from RyanMarcus/dirty-json
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
38 lines (38 loc) · 942 Bytes
/
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
{
"name": "dirty-json",
"version": "0.7.1",
"description": "A permissive parser for dirty JSON data that does its best",
"main": "dirty-json.js",
"engines": {
"node": ">=6.0.0"
},
"scripts": {
"test": "node_modules/mocha/bin/mocha",
"report": "istanbul cover ./node_modules/mocha/bin/_mocha --report lcovonly -- -R spec && cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js && rm -rf ./coverage"
},
"keywords": [
"json",
"parser",
"malformed"
],
"author": "Ryan Marcus <[email protected]>",
"license": "AGPL-3.0",
"dependencies": {
"lex": "^1.7.9",
"unescape-js": "^1.0.8",
"utf8": "^2.1.2"
},
"devDependencies": {
"coveralls": "^3.0.2",
"istanbul": "^0.4.5",
"mocha": "^5.2.0"
},
"repository": {
"type": "git",
"url": "https://github.com/RyanMarcus/dirty-json.git"
},
"jshintConfig": {
"esversion": 6,
"node": true
}
}