-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 738 Bytes
/
package.json
File metadata and controls
34 lines (34 loc) · 738 Bytes
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
{
"name": "deep-keys",
"version": "0.5.0",
"description": "Creates an array composed of the own enumerable property names(including nested) of an object.",
"license": "MIT",
"repository": "a8m/deep-keys",
"author": {
"name": "Ariel Mashraki",
"email": "ariel@mashraki.co.il",
"url": "https://github.com/a8m/deep-keys"
},
"engines": {
"node": ">=0.10.0"
},
"scripts": {
"test": "./node_modules/.bin/istanbul cover ./node_modules/mocha/bin/_mocha -- -u exports test.js"
},
"files": [
"index.js"
],
"keywords": [
"map",
"obj",
"object",
"key",
"keys",
"deep-keys",
"nested-keys"
],
"devDependencies": {
"istanbul": "^0.3.2",
"mocha": "^3.5.3"
}
}