forked from cosmosio/nested-property
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
43 lines (43 loc) · 963 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
39
40
41
42
43
{
"name": "nested-property",
"description": "Read, write or test a data structure's nested property via a string like 'my.nested.property'. It works through arrays and objects.'",
"version": "0.0.7",
"homepage": "https://github.com/cosmosio/nested-property",
"licenses": [
{
"type": "MIT",
"url": "https://raw.github.com/cosmosio/nested-property/master/LICENSE"
}
],
"files": [
"LICENSE",
"index.js"
],
"author": "Olivier Scherrer <[email protected]>",
"keywords": [
"nested",
"property",
"object",
"array",
"read",
"write",
"get",
"set"
],
"repository": {
"type": "git",
"url": "[email protected]:cosmosio/nested-property.git"
},
"bugs": {
"url": "https://github.com/cosmosio/nested-property/issues"
},
"scripts": {
"test": "mocha"
},
"main": "index.js",
"devDependencies": {
"chai": "~1.9.1",
"mocha": "~1.18.2",
"sinon": "~1.12.2"
}
}