-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
56 lines (56 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
52
53
54
55
56
{
"name": "delver",
"version": "1.1.5",
"description": "Read and update nested objects using simple patterns.",
"main": "index.js",
"devDependencies": {
"tap-spec": "^5.0.0",
"tape": "~4.9.1"
},
"scripts": {
"test": "tape test/*.js | tap-spec"
},
"keywords": [
"accessor",
"traversal",
"pattern",
"access",
"object",
"nested",
"path"
],
"testling": {
"files": "test/*.js",
"browsers": [
"ie/10..latest",
"chrome/20..latest",
"firefox/18..latest",
"safari/latest",
"opera/11.0..latest",
"iphone/6",
"ipad/6"
]
},
"repository": {
"type": "git",
"url": "git://github.com/andyburke/node-delver.git"
},
"homepage": "https://github.com/andyburke/node-delver",
"author": {
"name": "Andy Burke",
"email": "aburke@bitflood.org",
"url": "http://github.com/andyburke"
},
"contributors": [
{
"name": "Tim Taubert",
"email": "tim@timtaubert.de",
"url": "http://timtaubert.de/"
},
{
"name": "Jacob Lowe",
"url": "https://github.com/jacoblwe20"
}
],
"license": "MIT"
}