-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
79 lines (79 loc) · 1.97 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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
{
"name": "@consento/promise",
"version": "1.0.7",
"private": true,
"description": "Helpful utilities to work with AbortController/-Signal.",
"main": "index.js",
"scripts": {
"ci": "npm run lint && npm run test -- --no-watchman",
"test": "jest --env=node",
"build-ts": "tsc",
"watch-ts": "tsc -w",
"pack": "pack-ts",
"release": "npm run ci && npm run pack && cd dist && npm publish --access=public",
"lint": "eslint --ext .js,.ts ."
},
"keywords": [
"promise",
"async",
"abort",
"cancellation",
"utils",
"AbortSignal",
"AbortController"
],
"author": "Martin Heidegger <[email protected]>",
"license": "MIT",
"jest": {
"roots": [
"<rootDir>/src"
],
"transform": {
"^.+\\.tsx?$": "ts-jest"
}
},
"eslintConfig": {
"extends": "standard-with-typescript",
"parserOptions": {
"project": "./tsconfig.json"
},
"rules": {
"@typescript-eslint/no-redeclare": "off"
}
},
"eslintIgnore": [
"node_modules/*",
"dist/*",
"coverage/*",
"**/*.d.ts",
"/src/public/",
"/src/types/"
],
"dependencies": {
"abort-controller": "^3.0.0",
"event-target-shim": "^6.0.2"
},
"devDependencies": {
"@leichtgewicht/pack-ts": "^1.0.1",
"@types/jest": "^26.0.22",
"@types/libsodium-wrappers-sumo": "^0.7.5",
"@typescript-eslint/eslint-plugin": "^4.20.0",
"eslint": "^7.23.0",
"eslint-config-standard-with-typescript": "^20.0.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^4.3.1",
"eslint-plugin-standard": "^5.0.0",
"jest": "^26.6.3",
"ts-jest": "^26.5.4",
"typescript": "^4.2.3"
},
"repository": {
"type": "git",
"url": "git+https://github.com/consento-org/promise-utils.git"
},
"bugs": {
"url": "https://github.com/consento-org/promise-utils/issues"
},
"homepage": "https://github.com/consento-org/promise-utils#readme"
}