-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
65 lines (65 loc) · 1.24 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
57
58
59
60
61
62
63
64
65
{
"name": "expand-object",
"description": "Expand a string into a JavaScript object using a simple notation. Use the CLI or as a node.js lib.",
"version": "0.4.2",
"homepage": "https://github.com/jonschlinkert/expand-object",
"author": "Jon Schlinkert (https://github.com/jonschlinkert)",
"repository": "jonschlinkert/expand-object",
"bugs": {
"bugs": "https://github.com/jonschlinkert/expand-object/issues"
},
"license": "MIT",
"files": [
"cli.js",
"index.js"
],
"main": "index.js",
"engines": {
"node": ">=0.10.0"
},
"scripts": {
"test": "mocha"
},
"bin": {
"expand-object": "cli.js"
},
"dependencies": {
"get-stdin": "^5.0.1",
"is-number": "^2.1.0",
"minimist": "^1.2.0",
"set-value": "^0.3.3"
},
"devDependencies": {
"gulp-format-md": "^0.1.5",
"mocha": "*"
},
"keywords": [
"get",
"has",
"hasown",
"key",
"keys",
"nested",
"notation",
"object",
"prop",
"properties",
"property",
"props",
"set",
"value",
"values"
],
"verb": {
"related": {
"list": "expand-args"
},
"reflinks": [
"collapse-object"
],
"layout": "default",
"plugins": [
"gulp-format-md"
]
}
}