-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
62 lines (62 loc) · 1.33 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
{
"version": "1.0.0",
"name": "chain-able-find",
"description": "find files synchronously, easily, with a chainable interface",
"main": "src/index.js",
"module": "src/index.js",
"scripts": {
"test": "ava --verbose",
"bench": "node bench/async && node bench/glob"
},
"todoDependencies": {
"bench-chain": "*",
"^ conflicting old fliplog": true
},
"devDependencies": {
"ava": "^0.19.1",
"does-include": "*",
"doxdox": "2.0.2",
"fliplog": "1.x",
"globby": "*",
"jsdoc": "3.4.3",
"jsdoc-api": "3.0.0",
"jsdoc-babel": "0.3.0"
},
"dependencies": {
"chain-able": "4.0.0-beta.1",
"eslint-config-chain-able": "^1.0.0"
},
"ava": {
"files": [
"test/*.js",
"!test/fixtures/**"
],
"source": [
"test/*.js",
"!dist/**/*"
],
"concurrency": 5,
"failFast": true,
"failWithoutAssertions": false
},
"keywords": [
"fluent",
"chain-able",
"chainable",
"find",
"glob",
"node",
"match",
"wildcard"
],
"license": "MIT",
"author": "aretecode <[email protected]>",
"bugs": {
"url": "https://github.com/aretecode/chain-able-find"
},
"homepage": "https://github.com/aretecode/chain-able-find",
"repository": {
"type": "git",
"url": "git+https://github.com/aretecode/chain-able-find.git"
}
}