-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
81 lines (81 loc) · 2.3 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
{
"name": "batch-cluster",
"version": "13.0.0",
"description": "Manage a cluster of child processes",
"main": "dist/BatchCluster.js",
"homepage": "https://photostructure.github.io/batch-cluster.js/",
"bugs": {
"url": "https://github.com/photostructure/batch-cluster.js/issues"
},
"types": "dist/BatchCluster.d.ts",
"repository": {
"type": "git",
"url": "https://github.com/photostructure/batch-cluster.js.git"
},
"engines": {
"node": ">=14"
},
"scripts": {
"ci": "yarn install --frozen-lockfile",
"clean": "rimraf dist",
"prettier": "prettier --write src/*.ts",
"lint": "yarn eslint src --ext .ts",
"compile": "tsc",
"watch": "rimraf dist & tsc --watch",
"pretest": "yarn clean && yarn lint && yarn compile",
"test": "mocha dist/**/*.spec.js",
"docs:1": "typedoc --options .typedoc.js",
"docs:2": "cp .serve.json docs/serve.json",
"docs:3": "touch docs/.nojekyll",
"docs:4": "yarn serve docs",
"docs": "bash -c 'for i in {1..4} ; do yarn docs:$i ; done'"
},
"release-it": {
"src": {
"tagName": "v%s",
"commitArgs": "-S",
"tagArgs": "-S"
},
"hooks": {
"before:init": [
"yarn install",
"yarn lint"
]
},
"github": {
"release": true
}
},
"author": "Matthew McEachen <[email protected]>",
"license": "MIT",
"devDependencies": {
"@sinonjs/fake-timers": "^13.0.3",
"@types/chai": "^4.3.11",
"@types/chai-as-promised": "^7",
"@types/chai-string": "^1.4.5",
"@types/chai-subset": "^1.3.5",
"@types/mocha": "^10.0.9",
"@types/node": "^22.7.7",
"@types/sinonjs__fake-timers": "^8.1.5",
"@typescript-eslint/eslint-plugin": "^8.10.0",
"@typescript-eslint/parser": "^8.10.0",
"chai": "^4.3.10",
"chai-as-promised": "^7.1.2",
"chai-string": "^1.5.0",
"chai-subset": "^1.6.0",
"chai-withintoleranceof": "^1.0.1",
"eslint": "^8.57.0",
"eslint-plugin-import": "^2.31.0",
"mocha": "^10.7.3",
"npm-check-updates": "^17.1.4",
"prettier": "^3.3.3",
"prettier-plugin-organize-imports": "^4.1.0",
"rimraf": "^5.0.10",
"seedrandom": "^3.0.5",
"serve": "^14.2.4",
"source-map-support": "^0.5.21",
"split2": "^4.2.0",
"typedoc": "^0.26.10",
"typescript": "~5.6.3"
}
}