-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy pathpackage.json
35 lines (35 loc) · 884 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
35
{
"name": "interval-promise",
"version": "1.4.0",
"description": "setInterval with setTimeout semantics for promises and async/await",
"repository": {
"type": "git",
"url": "https://github.com/andyfleming/interval-promise"
},
"keywords": [
"interval",
"promise",
"setTimeout",
"setInterval",
"timer",
"repeat",
"repeatEvery",
"async",
"await"
],
"main": "src/index.js",
"types": "src/index.d.ts",
"scripts": {
"test": "./node_modules/.bin/ava --verbose",
"lint": "./node_modules/.bin/eslint src/**/*.js tests/**",
"coverage": "./node_modules/.bin/nyc npm test &&./node_modules/.bin/nyc report --reporter=html"
},
"author": "Andy Fleming <andy@andyfleming.com>",
"license": "MIT",
"devDependencies": {
"ava": "^2.4.0",
"coveralls": "^3.0.9",
"eslint": "^6.8.0",
"nyc": "^15.0.0"
}
}