forked from tjmehta/101
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 loc) · 856 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
{
"name": "101",
"version": "0.7.3",
"description": "common javascript utils that can be required selectively that assume es5+",
"main": "index.js",
"scripts": {
"test": "lab -c test",
"test-watch": "nodemon --exec lab -c test"
},
"repository": {
"type": "git",
"url": "https://github.com/tjmehta/101"
},
"keywords": [
"utils",
"js",
"helpers",
"functional",
"pick",
"pluck",
"map",
"array",
"object",
"string"
],
"author": "Tejesh Mehta",
"license": "MIT",
"bugs": {
"url": "https://github.com/tjmehta/101/issues"
},
"homepage": "https://github.com/tjmehta/101",
"devDependencies": {
"coveralls": "^2.11.2",
"lab": "^4.6.2"
},
"dependencies": {
"clone": "^0.1.18",
"deep-eql": "^0.1.3",
"extend": "^1.3.0",
"keypather": "^1.7.5"
}
}