-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
49 lines (49 loc) · 1021 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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
{
"name": "poll",
"version": "3.2.2",
"license": "MIT",
"description": "A simple poll function based on async, await, and an infinite loop",
"author": {
"name": "Philipp Rudloff",
"url": "https://kleinfreund.de"
},
"homepage": "https://github.com/kleinfreund/poll",
"repository": {
"type": "git",
"url": "https://github.com/kleinfreund/poll.git"
},
"bugs": {
"url": "https://github.com/kleinfreund/poll/issues"
},
"keywords": [
"poll",
"async",
"await"
],
"type": "module",
"exports": {
".": {
"types": "./types/index.d.ts",
"default": "./dist/poll.js"
},
"./types/index.d.ts": "./types/index.d.ts"
},
"types": "./types/index.d.ts",
"files": [
"dist",
"types"
],
"sideEffects": false,
"scripts": {
"build": "rollup --config",
"test": "vitest run --coverage",
"prepublishOnly": "npm run build"
},
"devDependencies": {
"@rollup/plugin-terser": "^0.4.4",
"@vitest/coverage-v8": "^2.1.3",
"jsdom": "^25.0.1",
"rollup": "^4.24.0",
"vitest": "^2.1.3"
}
}