forked from suguru03/neo-async
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
73 lines (73 loc) · 1.76 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
63
64
65
66
67
68
69
70
71
72
73
{
"name": "neo-async",
"version": "2.6.2",
"description": "Neo-Async is a drop-in replacement for Async, it almost fully covers its functionality and runs faster ",
"main": "lib/async.js",
"scripts": {
"test": "istanbul cover ./node_modules/.bin/_mocha --report lcovonly -- -R spec ./test --recursive",
"clean": "rm -rf coverage",
"cov:100": "grep Lines | perl -nle 'my ($l, $c, $p, @d) = split(/[\\s%]+/); exit(($p == 100) == 0)'"
},
"license": "MIT",
"keywords": [
"async",
"util"
],
"private": true,
"repository": {
"type": "git",
"url": "[email protected]:suguru03/neo-async.git"
},
"homepage": "https://github.com/suguru03/neo-async",
"files": [
"LICENSE",
"index.js",
"lib/async.js",
"lib/async.min.js",
"dist/async.js",
"dist/async.min.js"
],
"dependencies": {},
"devDependencies": {
"aigle": "^1.14.0",
"async": "^2.6.0",
"benchmark": "^2.1.1",
"bluebird": "^3.5.1",
"codecov.io": "^0.1.6",
"fs-extra": "^4.0.2",
"func-comparator": "^0.7.2",
"gulp": "^4.0.2",
"gulp-bump": "^2.8.0",
"gulp-exit": "0.0.2",
"gulp-git": "^2.4.2",
"gulp-jscs": "^4.0.0",
"gulp-mocha": "^4.2.0",
"gulp-tag-version": "^1.3.0",
"gulp-util": "^3.0.7",
"husky": "^4.2.5",
"istanbul": "^0.4.3",
"jsdoc": "^3.5.5",
"jshint": "^2.9.5",
"lint-staged": "^10.2.11",
"lodash": "^4.17.21",
"minimist": "^1.2.3",
"mocha": "^3.5.3",
"mocha-parallel-executor": "^0.3.0",
"mocha.parallel": "^0.15.3",
"prettier": "^2.0.5"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,ts}": [
"prettier --write"
]
},
"prettier": {
"printWidth": 100,
"singleQuote": true
}
}