-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.08 KB
/
package.json
File metadata and controls
44 lines (44 loc) · 1.08 KB
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
{
"name": "sonic-async",
"version": "0.5.10",
"description": "async flow control with sonic speed",
"main": "sonicAsync.js",
"scripts": {
"test": "./node_modules/.bin/mocha -R nyan test/sonicAsync_spec.js",
"build": "./build/minify.js",
"prebuild": "./node_modules/.bin/jshint ./sonicAsync.js",
"benchw": "./bench doxbee",
"benchp": "./bench parallel",
"benchl": "./bench limit",
"release": "npm run build && npm test"
},
"repository": {
"type": "git",
"url": "https://github.com/peterluhub/sonicAsync.git"
},
"keywords": [
"async",
"callback",
"performance",
"async concurrency",
"async parallel",
"async series",
"flow control",
"control flow",
"async map",
"async filter",
"async limit"
],
"author": "Peter Lu",
"license": "MIT",
"bugs": {
"url": "https://github.com/peterluhub/sonic-async/issues"
},
"homepage": "https://github.com/peterluhub/sonic-async",
"devDependencies": {
"chai": "^3.5.0",
"jshint": ">2.0.0",
"mocha": ">1.20.0",
"node-minify": "^1.3.7"
}
}