-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
35 lines (35 loc) · 1.02 KB
/
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": "skdl",
"version": "1.1.7",
"description": "Helps set up a promisified polling",
"main": "dist/index.js",
"type": "module",
"scripts": {
"build": "npm-run-all -s cleanup compile",
"cleanup": "node -e \"require('fs').rmSync('dist', {force: true, recursive: true});\"",
"compile": "npm-run-all -s compile:src compile:tests",
"compile:src": "esbuild index.ts --bundle --outfile=dist/index.js --platform=neutral --minify",
"compile:tests": "esbuild tests.ts --bundle --outfile=dist/tests.js --platform=neutral --minify",
"prepublishOnly": "npm-run-all -s build test",
"preversion": "npm-run-all -s build test",
"test": "node dist/tests.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/axtk/skdl.git"
},
"keywords": [
"polling",
"promisified polling",
"promise",
"promisify",
"async"
],
"author": "axtk",
"license": "ISC",
"devDependencies": {
"@types/node": "^20.12.5",
"esbuild": "^0.20.2",
"npm-run-all": "^4.1.5"
}
}