-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
64 lines (64 loc) · 1.93 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
{
"name": "@digicatapult/sqnc-process-management",
"version": "2.2.126",
"description": "SQNC Process Management Flow",
"main": "./lib/index.js",
"bin": {
"process-management": "./build/src/index.js"
},
"type": "module",
"scripts": {
"start": "node --loader ts-node/esm src/index.ts",
"local": "npm i -g && process-management",
"dev": "nodemon --watch 'src/**/*.ts' --exec node --loader ts-node/esm src/index.ts",
"lint": "eslint .",
"build": "tsc --build",
"depcheck": "depcheck",
"test": "ts-mocha --config ./tests/mocharc.json -n loader=ts-node/esm -p tsconfig.json tests/**/*.test.ts --exit",
"test:unit": "ts-mocha --config ./tests/mocharc.json -n loader=ts-node/esm -p tsconfig.json src/**/*.test.ts --exit",
"prettier": "npx prettier --write ."
},
"repository": {
"type": "git",
"url": "git+https://github.com/digicatapult/sqnc-process-management.git"
},
"files": [
"/build"
],
"engines": {
"node": ">=20.x.x",
"npm": ">=10.x.x"
},
"author": "Digital Catapult",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/digicatapult/sqnc-process-management/issues"
},
"homepage": "https://github.com/digicatapult/sqnc-process-management#readme",
"devDependencies": {
"@eslint/eslintrc": "^3.1.0",
"@eslint/js": "^9.14.0",
"@types/chai": "^5.0.1",
"@types/mocha": "^10.0.9",
"@types/node": "^18.19.63",
"@typescript-eslint/eslint-plugin": "^8.12.2",
"@typescript-eslint/parser": "^8.12.2",
"chai": "^5.1.2",
"depcheck": "^1.4.7",
"eslint": "^9.14.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.2.1",
"mocha": "^10.8.2",
"nodemon": "^3.1.7",
"prettier": "^3.3.3",
"ts-mocha": "^10.0.0",
"ts-node": "^10.9.2"
},
"dependencies": {
"@polkadot/api": "^14.2.2",
"chalk": "^5.3.0",
"commander": "^12.1.0",
"typescript": "^5.6.3",
"zod": "^3.23.8"
}
}