-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
64 lines (64 loc) · 2.08 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
{
"name": "cancelable-promise-jq",
"version": "2.6.1",
"description": "This library was renamed to `easy-cancelable-promise` as of Sep-27-2024. Please update any references of the old library name in your project",
"types": "lib/index.d.ts",
"main": "lib/bundle.js",
"files": [
"lib"
],
"author": "Johnny Quesada <[email protected]>",
"license": "MIT",
"scripts": {
"test": "jest --detectOpenHandles",
"test:debug": "node --inspect-brk node_modules/.bin/jest --watch --runInBand",
"test:quick": "jest --detectOpenHandles --maxWorkers=4 -c --no-watchman -u",
"test:coverage": "jest --maxWorkers=4 -c --colors --no-watchman --verbose --coverage",
"build": "webpack --config webpack.config.js",
"prepare": "npm run build",
"version": "npm run format && git add -A src",
"postversion": "git push && git push --tags",
"lint": "eslint src --ext .js,.jsx,.ts,.tsx --max-warnings=0",
"lint:fix": "eslint --fix src --ext .js,.jsx,.ts,.tsx --max-warnings=0"
},
"dependencies": {
"easy-cancelable-promise": "^1.0.1"
},
"devDependencies": {
"@babel/core": "^7.21.3",
"@babel/plugin-proposal-class-properties": "^7.18.6",
"@babel/plugin-proposal-export-namespace-from": "^7.18.9",
"@babel/plugin-transform-modules-commonjs": "^7.21.2",
"@babel/preset-env": "^7.20.2",
"@babel/preset-typescript": "^7.21.0",
"@types/jest": "^29.2.4",
"babel-loader": "^9.1.2",
"jest": "^29.3.1",
"prettier": "^3.2.1",
"ts-jest": "^29.0.3",
"ts-loader": "^9.4.2",
"tslib": "^2.4.1",
"typescript": "^4.9.4",
"webpack": "^5.76.3",
"webpack-cli": "^5.0.1"
},
"repository": {
"type": "git",
"url": "[email protected]:johnny-quesada-developer/cancelable-promise-jq.git"
},
"bugs": {
"url": "https://github.com/johnny-quesada-developer/cancelable-promise-jq/issues"
},
"homepage": "https://github.com/johnny-quesada-developer/cancelable-promise-jq#readme",
"keywords": [
"promises",
"web",
"worker",
"workers",
"threads",
"thread",
"async",
"callbacks",
"queue"
]
}