-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
48 lines (48 loc) · 1.33 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
{
"name": "prutill",
"version": "1.0.3",
"description": "Promise utilities to improve multiple Promise processing.",
"main": "dist_commonjs/index.js",
"types": "./index.ts",
"scripts": {
"build": "rm -rf dist_commonjs/* dist_es6/* && tsc --project tsconfig-commonjs.json && tsc --project tsconfig-es6.json",
"test": "jest && jest -c jest-node.config.json && deno test --config tsconfig-deno.json"
},
"repository": {
"type": "git",
"url": "git+https://github.com/dominikj111/prutill.git"
},
"keywords": [
"Promise",
"TimedPromise",
"Stack",
"Race",
"React.js",
"Deno",
"Node",
"vanilla js",
"Typescript",
"utilities"
],
"author": "dominikj111",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/dominikj111/prutill/issues"
},
"homepage": "https://github.com/dominikj111/prutill#readme",
"devDependencies": {
"@types/jest": "^29.5.5",
"@types/jsdom": "^21.1.3",
"@types/node": "^20.8.0",
"@typescript-eslint/eslint-plugin": "^6.7.3",
"@typescript-eslint/parser": "^6.7.3",
"eslint": "^8.50.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-import": "^2.28.1",
"eslint-plugin-prettier": "^5.0.0",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"ts-jest": "^29.1.1",
"typescript": "^5.2.2"
}
}