-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
63 lines (63 loc) · 1.77 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
{
"name": "bpme",
"version": "1.0.0",
"description": "Business Process Management Engine (BPM-E)",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"scripts": {
"test:debug": "jest --watch",
"doc": "typedoc --out docs src/",
"build": "tsc -p ./tsconfig.json",
"check": "npm run lint && npm run format",
"fresh": "npm run check && npm run clean",
"lint": "eslint . '*/**/*.{js,ts}' --quiet --fix",
"format": "prettier --write \"(src|test)/**/*.(ts|js)\"",
"debug": "node -r ts-node/register --inspect src/index.ts",
"clean": "rm -rf ./lib && rm -rf ./docs && npm run doc && npm run test",
"test": "jest && make-coverage-badge --report-path docs/coverage/coverage-summary.json --output-path coverage-badge.svg"
},
"repository": {
"type": "git",
"url": "git+https://github.com/vhidvz/bpme.git"
},
"author": "Vahid V. <vhid.vz@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/vhidvz/bpme/issues"
},
"keywords": [
"bpm",
"bpmn",
"flow",
"engine",
"process",
"workflow",
"bpm-engine",
"bpmn-engine",
"workflow-engine",
"workflow-engine-bpmn"
],
"homepage": "https://github.com/vhidvz/bpme#readme",
"devDependencies": {
"@types/jest": "^27.5.0",
"@typescript-eslint/eslint-plugin": "^5.22.0",
"@typescript-eslint/parser": "^5.22.0",
"eslint": "^8.14.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.0.0",
"jest": "^28.0.3",
"make-coverage-badge": "^1.2.0",
"prettier": "^2.6.2",
"ts-jest": "^28.0.1",
"ts-node": "^10.7.0",
"typedoc": "^0.22.15",
"typescript": "^4.6.4"
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
},
"files": [
"/lib"
]
}