-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathpackage.json
51 lines (51 loc) · 1.13 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
{
"name": "json-source-map",
"version": "0.6.1",
"description": "Parse/stringify JSON and provide source-map for JSON-pointers to all nodes",
"main": "index.js",
"scripts": {
"eslint": "eslint index.js spec",
"test-spec": "mocha spec -R spec",
"test-debug": "mocha spec -R spec --debug-brk",
"test": "npm run eslint && nyc npm run test-spec"
},
"repository": {
"type": "git",
"url": "git+https://github.com/epoberezkin/json-source-map.git"
},
"keywords": [
"JSON",
"parse",
"stringify",
"json-pointer",
"source-map",
"BigInt",
"ES6",
"Map",
"Set",
"TypedArray"
],
"author": "Evgeny Poberezkin",
"license": "MIT",
"bugs": {
"url": "https://github.com/epoberezkin/json-source-map/issues"
},
"homepage": "https://github.com/epoberezkin/json-source-map#readme",
"devDependencies": {
"coveralls": "^2.11.15",
"eslint": "^6.1.0",
"json-pointer": "^0.6.0",
"mocha": "^3.2.0",
"nyc": "^10.0.0",
"pre-commit": "^1.2.2"
},
"nyc": {
"exclude": [
"spec"
],
"reporter": [
"lcov",
"text-summary"
]
}
}