-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
53 lines (53 loc) · 1.11 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
{
"name": "object-loops",
"version": "0.8.0",
"description": "Functional methods like forEach, map, filter, and other Array methods for Objects in javascript",
"main": "index.js",
"directories": {
"test": "test"
},
"scripts": {
"test": "lab -t 100 -a code",
"test-watch": "nodemon --exec npm test",
"lint": "standard",
"format": "standard --format"
},
"repository": {
"type": "git",
"url": "https://github.com/tjmehta/object-loops.git"
},
"keywords": [
"object",
"functional",
"methods",
"forEach",
"map",
"map keys",
"keys",
"mapKeys",
"reduce",
"filter",
"some",
"every",
"extended",
"function"
],
"author": "Tejesh Mehta",
"license": "MIT",
"bugs": {
"url": "https://github.com/tjmehta/object-loops/issues"
},
"homepage": "https://github.com/tjmehta/object-loops",
"dependencies": {
"101": "^1.6.1",
"dasherize": "^2.0.0"
},
"devDependencies": {
"camelize": "^1.0.0",
"code": "^1.5.0",
"lab": "^6.2.0",
"nodemon": "^1.8.1",
"sinon": "^1.17.2",
"standard": "^5.4.1"
}
}