82 lines
2.3 KiB
JSON
82 lines
2.3 KiB
JSON
{
|
|
"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 <matthew-batchcluster@photostructure.com>",
|
|
"license": "MIT",
|
|
"devDependencies": {
|
|
"@types/chai": "^4.3.11",
|
|
"@types/chai-as-promised": "^7.1.8",
|
|
"@types/chai-string": "^1.4.5",
|
|
"@types/chai-subset": "^1.3.5",
|
|
"@types/mocha": "^10.0.6",
|
|
"@types/node": "^20.11.17",
|
|
"@typescript-eslint/eslint-plugin": "^6.21.0",
|
|
"@typescript-eslint/parser": "^6.21.0",
|
|
"chai": "^4.3.10",
|
|
"chai-as-promised": "^7.1.1",
|
|
"chai-string": "^1.5.0",
|
|
"chai-subset": "^1.6.0",
|
|
"chai-withintoleranceof": "^1.0.1",
|
|
"eslint": "^8.56.0",
|
|
"eslint-plugin-import": "^2.29.1",
|
|
"mocha": "^10.3.0",
|
|
"npm-check-updates": "^16.14.14",
|
|
"prettier": "^3.2.5",
|
|
"prettier-plugin-organize-imports": "^3.2.4",
|
|
"rimraf": "^5.0.5",
|
|
"release-it": "^17.0.3",
|
|
"seedrandom": "^3.0.5",
|
|
"serve": "^14.2.1",
|
|
"source-map-support": "^0.5.21",
|
|
"split2": "^4.2.0",
|
|
"timekeeper": "^2.3.1",
|
|
"typedoc": "^0.25.7",
|
|
"typescript": "~5.3.3"
|
|
}
|
|
}
|