forked from manuelstofer/json-pointer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
38 lines (38 loc) · 969 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": "json-pointer",
"description": "Some utilities for JSON pointers described by RFC 6901",
"version": "0.1.0",
"author": "Manuel Stofer <[email protected]>",
"license": "MIT",
"dependencies": {
"foreach": "*"
},
"devDependencies": {
"mocha": "1.9.0",
"chai": "*",
"component": "*",
"mocha-phantomjs": "*",
"phantomjs": "*"
},
"scripts": {
"test": "make test"
},
"testling": {
"harness" : "mocha",
"files": "test/*.js",
"browsers": [
"iexplore/6.0..latest",
"firefox/3.0",
"firefox/15.0..latest",
"firefox/nightly",
"chrome/4.0",
"chrome/22.0..latest",
"chrome/canary",
"opera/10.0..latest",
"opera/next",
"safari/5.0.5..latest",
"ipad/6.0..latest",
"iphone/6.0..latest"
]
}
}