-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
54 lines (54 loc) · 1.18 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
{
"name": "toolz",
"version": "0.2.65",
"description": "basic javascript utils for working with arrays, objects, functions, types and other",
"scripts": {
"test": "test/painless test/spec/**/*.js"
},
"engines": {
"node": ">=4.2"
},
"repository": {
"type": "git",
"url": "git://github.com/akileez/toolz.git"
},
"author": {
"name": "Keith Williams",
"email": "[email protected]",
"url": "https://github.com/akileez/toolz"
},
"homepage": "https://github.com/akileez/toolz",
"bugs": {
"url": "https://github.com/akileez/toolz/issues"
},
"license": "ISC",
"keywords": [],
"dependencies": {},
"devDependencies": {},
"nyc": {
"include": [
"src/array/*.js",
"src/collection/*.js",
"src/function/*.js",
"src/generator/*.js",
"src/helper/ent/*.js",
"src/json/*.js",
"src/lang/*.js",
"src/math/*.js",
"src/number/*.js",
"src/object/*.js",
"src/path/*.js",
"src/promise/promtie/*.js",
"src/query/*.js",
"src/random/*.js",
"src/string/*.js",
"src/text/*.js",
"src/time/*.js"
]
},
"files": [
"src",
"task",
"test/assertion"
]
}