generated from VitorLuizC/typescript-library-boilerplate
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
124 lines (124 loc) · 2.9 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
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
{
"name": "promise-throttle-all",
"version": "1.1.1",
"license": "MIT",
"author": {
"name": "Robin Pokorny",
"email": "me@robinpokorny.com",
"url": "http://robinpokorny.com"
},
"description": "Promise.all with limited concurrency",
"cdn": "dist/index.umd.js",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"unpkg": "dist/index.umd.js",
"module": "dist/index.esm.js",
"jsdelivr": "dist/index.umd.js",
"umd:main": "dist/index.umd.js",
"exports": {
".": [
{
"import": "./dist/index.mjs",
"require": "./dist/index.cjs",
"default": "./dist/index.js"
},
"./dist/index.js"
]
},
"files": [
"dist",
"src"
],
"dependencies": {},
"devDependencies": {
"@types/eslint": "^8.4.2",
"@types/jest": "^27.5.1",
"@types/prettier": "^2.6.1",
"@typescript-eslint/eslint-plugin": "^5.23.0",
"@typescript-eslint/parser": "^5.23.0",
"eslint": "^8.15.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.0.0",
"jest": "^28.1.0",
"prettier": "^2.6.2",
"rollup": "^2.73.0",
"rollup-plugin-terser": "^7.0.2",
"rollup-plugin-typescript2": "^0.31.2",
"ts-jest": "^28.0.2",
"ts-jest-resolver": "^2.0.0",
"typedoc": "^0.22.15",
"typedoc-plugin-markdown": "^3.12.1",
"typescript": "^4.6.4"
},
"scripts": {
"doc": "typedoc src/index.ts",
"test": "npm run test:lint && npm run test:unit",
"test:lint": "eslint \"*/**/*.{ts,js,json}\"",
"test:unit": "jest",
"lint": "eslint \"*/**/*.{ts,js,json}\" --fix",
"build": "rollup --config ./rollup.config.js",
"prepublishOnly": "npm run doc && npm run build && npm run test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/robinpokorny/promise-throttle-all.git"
},
"keywords": [
"promise",
"throttle",
"limit",
"limited",
"concurrency",
"rate",
"batch",
"ratelimit",
"queue",
"discard",
"async",
"await",
"promises",
"time",
"out",
"wip",
"cancel"
],
"bugs": {
"url": "https://github.com/robinpokorny/promise-throttle-all/issues"
},
"homepage": "https://github.com/robinpokorny/promise-throttle-all#readme",
"engines": {
"node": ">=12"
},
"prettier": {
"semi": false,
"singleQuote": true,
"trailingComma": "all"
},
"jest": {
"preset": "ts-jest",
"resolver": "ts-jest-resolver"
},
"eslintConfig": {
"root": true,
"parser": "@typescript-eslint/parser",
"parserOptions": {
"ecmaFeatures": {
"jsx": true
},
"ecmaVersion": 2021
},
"plugins": [
"@typescript-eslint"
],
"extends": [
"eslint:recommended",
"plugin:prettier/recommended",
"plugin:@typescript-eslint/eslint-recommended",
"plugin:@typescript-eslint/recommended"
],
"ignorePatterns": [
"docs/",
"dist/"
]
}
}