-
Notifications
You must be signed in to change notification settings - Fork 41
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 750 Bytes
/
package.json
File metadata and controls
35 lines (35 loc) · 750 Bytes
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
{
"name": "json-pointer",
"description": "Some utilities for JSON pointers described by RFC 6901",
"version": "0.6.2",
"author": "Manuel Stofer <manuel@smallpdf.com>",
"license": "MIT",
"dependencies": {
"foreach": "^2.0.4"
},
"homepage": "https://github.com/manuelstofer/json-pointer",
"repository": {
"type": "git",
"url": "git://github.com/manuelstofer/json-pointer.git"
},
"devDependencies": {
"chai": "^1.9.1",
"coveralls": "^2.11.14",
"mocha": "^1.9.0",
"nyc": "^8.3.1",
"seamless-immutable": "^5.1.1"
},
"scripts": {
"test": "nyc make test"
},
"nyc": {
"exclude": [
"test",
"node_modules"
],
"reporter": [
"lcov",
"text-summary"
]
}
}