-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
29 lines (29 loc) · 755 Bytes
/
package.json
File metadata and controls
29 lines (29 loc) · 755 Bytes
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
{
"name": "pasync",
"version": "2.0.2",
"license": "MIT",
"description": "Promise-oriented async",
"main": "./lib/index.js",
"repository": {
"type": "git",
"url": "[email protected]:crispy1989/pasync.git"
},
"scripts": {
"test": "node ./node_modules/mocha/bin/mocha ./test -R spec",
"lint": "node ./node_modules/jshint/bin/jshint --reporter unix --exclude ./node_modules . || exit 0",
"watch": "node ./node_modules/mocha/bin/mocha --watch ./test -R spec",
"bench": "node ./bench/index.js"
},
"dependencies": {
"p-limit": "^3.0.2"
},
"devDependencies": {
"chai": "^2.0.0",
"jshint": "^2.6.0",
"mocha": "8.1.1",
"spectrophotometer": "^3.0.2"
},
"engines": {
"node": ">= 14.0.0"
}
}