-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
38 lines (38 loc) · 1.04 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
36
37
38
{
"name": "wait-ready",
"version": "0.6.0",
"description": "a utility for executing actions after some async tasks complete",
"main": "lib/bundle.js",
"module": "lib/index.js",
"types": "lib/index.d.ts",
"files": [
"lib/"
],
"scripts": {
"clean": "rm -rf lib",
"build": "npm run clean && npm run compile && rollup --config",
"compile": "tsc -d",
"release": "npm test && npm run build && standard-version && git push --follow-tags origin master && npm publish",
"test": "jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/rocwind/wait-ready.git"
},
"author": "Roc",
"license": "MIT",
"bugs": {
"url": "https://github.com/rocwind/wait-ready/issues"
},
"homepage": "https://github.com/rocwind/wait-ready#readme",
"devDependencies": {
"@babel/preset-env": "7.26.0",
"@rollup/plugin-babel": "6.0.4",
"@types/jest": "27.5.2",
"jest": "27.5.1",
"rollup": "2.79.2",
"standard-version": "9.5.0",
"ts-jest": "27.1.5",
"typescript": "5.7.3"
}
}