-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
60 lines (60 loc) · 1.88 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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
{
"name": "sleep-promise",
"author": "Jan Brummelte <sleep-promise@jan-brummelte.de> (https://jan-brummelte.de)",
"version": "9.1.0",
"description": "Resolves a promise after a specified delay",
"main": "build/cjs.js",
"module": "build/esm.mjs",
"types": "build/cjs.d.ts",
"scripts": {
"test": "npm run test:code && npm run test:eslint && npm run test:typescript",
"test:code": "jest",
"test:eslint": "eslint .",
"test:typescript": "tsc",
"build": "npm run build:clean && npm run build:bundle && npm run build:types",
"build:clean": "rimraf build",
"build:bundle": "rollup --config",
"build:types": "copyfiles -u 1 types/* build",
"prepublishOnly": "yarn build"
},
"repository": {
"type": "git",
"url": "https://github.com/brummelte/sleep-promise"
},
"keywords": [
"sleep",
"promise",
"delay"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/brummelte/sleep-promise/issues"
},
"homepage": "https://github.com/brummelte/sleep-promise",
"devDependencies": {
"@babel/cli": "^7.25.9",
"@babel/core": "^7.25.9",
"@babel/plugin-transform-runtime": "^7.25.9",
"@babel/preset-env": "^7.25.9",
"@brummelte/eslint-config": "^9.2.29",
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/commit-analyzer": "^12.0.0",
"@semantic-release/git": "^10.0.1",
"@semantic-release/github": "^10.3.5",
"@semantic-release/npm": "^12.0.1",
"@semantic-release/release-notes-generator": "^13.0.0",
"babel-jest": "^29.7.0",
"copyfiles": "^2.4.1",
"coveralls": "^3.1.1",
"eslint": "^8.57.1",
"jest": "^29.7.0",
"jest-junit": "^16.0.0",
"rimraf": "^5.0.10",
"rollup": "^2.79.2",
"rollup-plugin-babel": "^4.4.0",
"rollup-plugin-node-resolve": "^5.2.0",
"rollup-plugin-terser": "^7.0.2",
"semantic-release": "^23.1.1",
"typescript": "^5.6.3"
}
}