-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
79 lines (79 loc) · 2.48 KB
/
package.json
File metadata and controls
79 lines (79 loc) · 2.48 KB
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": "promise-parallel-throttle",
"version": "3.5.0",
"keywords": [
"promise",
"async",
"parallel",
"throttle",
"promise.all()",
"sync",
"synchronously"
],
"description": "Run promises in parallel, but throttled",
"main": "dist/lib/throttle.js",
"module": "dist/lib/throttle.mjs",
"types": "dist/types/throttle.d.ts",
"scripts": {
"prepublish": "npm run build",
"test": "yarn lint && jest --coverage --no-cache",
"test:watch": "jest --watch",
"lint": "tslint -p ./tsconfig.json",
"lint:fix": "tslint -p ./tsconfig.json --fix",
"prettier": "prettier --write \"**/*.{ts,tsx,js,jsx,json,css,scss,md,graphl}\" --ignore-path .gitignore",
"prebuild": "rimraf dist",
"build": "tsc --module commonjs && rollup -c rollup.config.ts --configPlugin typescript",
"start": "rollup -c rollup.config.ts -w --configPlugin typescript",
"prepare": "husky install"
},
"repository": {
"type": "git",
"url": "git+https://github.com/DJWassink/Promise-parallel-throttle.git"
},
"author": "Dirk-Jan Wassink <dirk.jan.wassink@gmail.com> (http://dirkjanwassink.nl)",
"license": "MIT",
"bugs": {
"url": "https://github.com/DJWassink/Promise-parallel-throttle/issues"
},
"homepage": "https://github.com/DJWassink/Promise-parallel-throttle#readme",
"jest": {
"transform": {
"^.+\\.tsx?$": "ts-jest"
},
"testRegex": "(/tests/.*|\\.(test|spec))\\.(ts|tsx|js)$",
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"jsx",
"json",
"node"
]
},
"lint-staged": {
"*.{ts,tsx}": [
"prettier --write",
"tslint -c ./tslint.json --fix"
],
"*.{json,css,scss,md,graphl,js,jsx}": [
"prettier --write"
]
},
"devDependencies": {
"@rollup/plugin-terser": "^0.4.4",
"@rollup/plugin-typescript": "^11.1.6",
"@types/jest": "^29.5.12",
"@types/node": "^20.11.19",
"husky": "^9.0.11",
"jest": "^29.7.0",
"lint-staged": "^15.2.2",
"prettier": "^3.2.5",
"rimraf": "^5.0.5",
"rollup": "^4.11.0",
"ts-jest": "^29.1.2",
"tslint": "^6.1.3",
"tslint-config-prettier": "^1.18.0",
"tslint-eslint-rules": "^5.4.0",
"typescript": "^5.3.3"
}
}