-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
69 lines (69 loc) · 1.69 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
{
"name": "piscina-priority-queue",
"version": "3.0.0",
"description": "A Priority TaskQueue implementation for Piscina",
"main": "./dist/src/index.js",
"exports": {
"import": "./dist/esm-wrapper.mjs",
"require": "./dist/src/index.js"
},
"types": "./dist/src/index.d.ts",
"scripts": {
"build": "tsc && gen-esm-wrapper . dist/esm-wrapper.mjs",
"lint": "standardx \"**/*.{ts,mjs,js,cjs}\" | snazzy",
"test": "npm run lint && npm run build && npm run test-only",
"test-only": "tap --ts",
"prepack": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jasnell/piscina-priority-queue"
},
"keywords": [
"piscina"
],
"author": "James M Snell <[email protected]>",
"contributors": [
"Anna Henningsen <[email protected]>",
"Matteo Collina <[email protected]>"
],
"license": "MIT",
"devDependencies": {
"@types/node": "^15.0.1",
"@typescript-eslint/eslint-plugin": "^4.9.0",
"@typescript-eslint/parser": "^4.9.0",
"gen-esm-wrapper": "^1.1.1",
"piscina": "3",
"snazzy": "^9.0.0",
"standardx": "^7.0.0",
"tap": "^15.0.6",
"ts-node": "^9.1.1",
"typescript": "^4.1.2"
},
"peerDependencies": {
"piscina": "^3.0.0"
},
"dependencies": {
"shuffled-priority-queue": "^2.1.0"
},
"eslintConfig": {
"rules": {
"semi": [
"error",
"always"
],
"no-unused-vars": "off",
"@typescript-eslint/no-unused-vars": "error"
},
"globals": {
"SharedArrayBuffer": true,
"Atomics": true
}
},
"standardx": {
"parser": "@typescript-eslint/parser",
"plugins": [
"@typescript-eslint/eslint-plugin"
]
}
}