-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
28 lines (28 loc) · 921 Bytes
/
package.json
File metadata and controls
28 lines (28 loc) · 921 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
{
"name": "async-poll",
"version": "1.0.0",
"description": "An async function that takes an async function as argument and runs it until the result satisfies a check function.",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "npx tsc",
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": ["async", "poll", "polling", "function"],
"author": "phillipdensmorechaffee@gmail.com",
"homepage": "https://github.com/PhillipChaffee/async-poll",
"bugs": "https://github.com/PhillipChaffee/async-poll/issues",
"repository": {
"type": "git",
"url": "https://github.com/PhillipChaffee/async-poll"
},
"license": "ISC",
"prettier": "@vercel/style-guide/prettier",
"devDependencies": {
"@tsconfig/strictest": "^1.0.1",
"@vercel/style-guide": "^3.0.0",
"eslint": "^8.16.0",
"prettier": "^2.6.2",
"typescript": "^4.7.2"
}
}