-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
67 lines (67 loc) · 2.25 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": "@digicatapult/sqnc-process-management",
"version": "2.2.146",
"description": "SQNC Process Management Flow",
"main": "./lib/index.js",
"bin": {
"process-management": "./build/index.js"
},
"type": "module",
"scripts": {
"start": "SWCRC=true NODE_ENV=production node --import @swc-node/register/esm-register --enable-source-maps src/index.ts",
"local": "npm i -g && process-management",
"dev": "NODE_ENV=dev nodemon --watch 'src/**/*.ts' --exec node --import @swc-node/register/esm-register --enable-source-maps src/index.ts",
"lint": "eslint .",
"build": "swc ./src -d ./build --strip-leading-paths --copy-files",
"depcheck": "depcheck",
"test": "SWCRC=true NODE_ENV=test node --enable-source-maps ./node_modules/.bin/mocha --config ./test/mocharc.json test/**/*.test.ts",
"test:unit": "SWCRC=true NODE_ENV=test node --enable-source-maps ./node_modules/.bin/mocha --config ./test/mocharc.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": ">=22.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.2.0",
"@eslint/js": "^9.16.0",
"@swc-node/register": "^1.10.9",
"@swc/cli": "^0.5.2",
"@swc/core": "^1.10.1",
"@swc/helpers": "^0.5.15",
"@types/chai": "^5.0.1",
"@types/mocha": "^10.0.10",
"@types/node": "^18.19.68",
"@typescript-eslint/eslint-plugin": "^8.18.0",
"@typescript-eslint/parser": "^8.18.0",
"chai": "^5.1.2",
"depcheck": "^1.4.7",
"eslint": "^9.16.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.2.1",
"mocha": "^11.0.1",
"nodemon": "^3.1.7",
"prettier": "^3.4.2",
"reflect-metadata": "^0.2.2",
"testcontainers": "^10.16.0"
},
"dependencies": {
"@polkadot/api": "^15.0.1",
"chalk": "^5.3.0",
"commander": "^12.1.0",
"zod": "^3.24.1"
}
}