-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
34 lines (34 loc) · 806 Bytes
/
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
{
"name": "simple-async-sleep",
"type": "module",
"version": "1.0.3",
"description": "An uncomplicated async sleep function for node.js.",
"main": "index.js",
"scripts": {
"test": "standard --env mocha && NODE_ENV=test mocha --recursive"
},
"repository": {
"type": "git",
"url": "git+https://github.com/huned/nodejs-async-sleep.git"
},
"keywords": [
"sleep",
"async",
"wait"
],
"author": "Huned Botee <[email protected]> (https://hunedbotee.com)",
"license": "MIT",
"bugs": {
"url": "https://github.com/huned/nodejs-async-sleep/issues"
},
"homepage": "https://github.com/huned/nodejs-async-sleep#readme",
"devDependencies": {
"mocha": "^9.1.3",
"standard": "^16.0.4"
},
"standard": {
"env": {
"mocha": true
}
}
}