forked from janl/node-jsonpointer
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 743 Bytes
/
package.json
File metadata and controls
37 lines (37 loc) · 743 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
36
37
{
"name": "jsonpointer",
"description": "Simple JSON Addressing.",
"tags": [
"util",
"simple",
"util",
"utility"
],
"version": "4.0.1",
"author": "Jan Lehnardt <jan@apache.org>",
"contributors": [
"Joe Hildebrand <joe-github@cursive.net>",
"Marc Bachmann <marc.brookman@gmail.com>"
],
"repository": {
"type": "git",
"url": "http://github.com/janl/node-jsonpointer.git"
},
"bugs": {
"url": "http://github.com/janl/node-jsonpointer/issues"
},
"engines": {
"node": ">=0.10.0"
},
"main": "./jsonpointer",
"files": [
"jsonpointer.js"
],
"scripts": {
"test": "standard && node test.js"
},
"license": "MIT",
"devDependencies": {
"standard": "^5.3.1"
}
}