-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
67 lines (67 loc) · 2.05 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
{
"name": "@elite-libs/promise-pool",
"version": "1.3.1",
"description": "Configurable async task queue, w/ throttling, retries, progress, error handling.",
"keywords": [],
"type": "commonjs",
"homepage": "https://github.com/elite-libs/promise-pool",
"repository": {
"type": "git",
"url": "https://github.com/elite-libs/promise-pool.git"
},
"source": "./src/index.ts",
"main": "./dist/index.cjs",
"module": "./dist/index.mjs",
"browser": "./dist/index.global.js",
"types": "./dist/index.d.ts",
"private": false,
"packageManager": "npm@6.0.0-9.0.0",
"engineStrict": true,
"engines": {
"npm": ">=6",
"node": ">=12.0.0"
},
"scripts": {
"prepublishOnly": "NODE_ENV=production npm run build",
"release:npm": "npm publish --access public --registry https://registry.npmjs.org/",
"release:github": "npm publish --access public --registry https://npm.pkg.github.com/",
"test": "npm run build && jest --coverage --detectOpenHandles --runInBand",
"test:coverage": "npm run build && jest --coverage",
"build": "npx rimraf ./dist/* && npm run build:bundle && npm run build:types",
"build:types": "npx tsc --project ./tsconfig.types.json",
"build:bundle": "npx tsup && cp dist/index.js dist/index.cjs",
"lint": "eslint .",
"format": "eslint --fix ."
},
"author": {
"name": "@justsml",
"url": "https://danlevy.net"
},
"license": "BSD-3-Clause",
"files": [
"dist",
"*.md"
],
"devDependencies": {
"@types/eslint": "^8.4.3",
"@types/jest": "^26.0.0",
"@types/lodash": "^4.14.182",
"@types/node": "^14.0.0",
"@typescript-eslint/eslint-plugin": "^5.30.6",
"@typescript-eslint/parser": "^5.30.6",
"eslint": "^8.17.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-airbnb-typescript": "^17.0.0",
"eslint-plugin-import": "^2.26.0",
"jest": "^26.0.0",
"ts-jest": "^26.0.0",
"ts-node": "^10.8.1",
"tsup": "^6.1.2",
"typescript": "^4.7.4"
},
"prettier": {
"printWidth": 80,
"tabWidth": 2,
"singleQuote": true
}
}