forked from mariocasciaro/object-path
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
executable file
·64 lines (64 loc) · 1.14 KB
/
package.json
File metadata and controls
executable file
·64 lines (64 loc) · 1.14 KB
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
57
58
59
60
61
62
63
64
{
"name": "object-path",
"description": "Access deep properties using a path",
"version": "0.9.0",
"author": {
"name": "Mario Casciaro"
},
"homepage": "https://github.com/mariocasciaro/object-path",
"repository": {
"type": "git",
"url": "git://github.com/mariocasciaro/object-path.git"
},
"engines": {
"node": ">=0.8.0"
},
"devDependencies": {
"mocha": "~1.20.1",
"chai": "~1.9.1",
"mocha-lcov-reporter": "~0.0.1",
"coveralls": "~2.11.1",
"istanbul": "~0.3.0"
},
"scripts": {
"test": "node ./node_modules/istanbul/lib/cli.js cover ./node_modules/mocha/bin/_mocha test.js --report html -- -R spec"
},
"testling": {
"browsers": {
"ie": [
8,
9
],
"firefox": [
10,
24
],
"chrome": [
30,
22
],
"safari": [
5,
6
],
"opera": [
15
],
"iphone": [
6
],
"android-browser": [
4.2
]
},
"harness": "mocha",
"files": "test.js"
},
"keywords": [
"deep",
"path",
"access",
"bean"
],
"license": "MIT"
}