-
Notifications
You must be signed in to change notification settings - Fork 13
/
package.json
37 lines (37 loc) · 859 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
{
"name": "objectpath",
"author": "Mike Marcacci <[email protected]>",
"license": "MIT",
"version": "2.0.0",
"description": "Parse js object paths using both dot and bracket notation. Stringify an array of properties into a valid path.",
"main": "index.js",
"directories": {
"test": "test"
},
"scripts": {
"test": "mocha test/*"
},
"devDependencies": {
"chai": "^4.2.0",
"mocha": "^5.2.0"
},
"keywords": [
"js object",
"dot notation",
"bracket notation",
"path",
"parse",
"string",
"object path",
"object"
],
"dependencies": {},
"repository": {
"type": "git",
"url": "https://github.com/mike-marcacci/objectpath.git"
},
"bugs": {
"url": "https://github.com/mike-marcacci/objectpath/issues"
},
"homepage": "https://github.com/mike-marcacci/objectpath"
}