-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
70 lines (70 loc) · 2.15 KB
/
package.json
File metadata and controls
70 lines (70 loc) · 2.15 KB
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
{
"name": "biprocess",
"version": "3.1.0",
"description": "Business Process daemon",
"main": "dist/",
"dependencies": {
"bcrypt": "^5.0.0",
"chai": "^4.2.0",
"commander": "^6.2.1",
"cryptr": "^6.0.2",
"express": "^4.17.1",
"glob-to-regexp": "^0.4.1",
"minimist": "^1.2.5",
"mongodb": "^3.6.3",
"node-schedule": "^1.3.2",
"redis": "^3.0.2",
"require-directory": "^2.1.1",
"saslprep": "^1.0.3",
"sequelize": "^6.3.5",
"tedious": "^9.2.3",
"xml2js": "^0.4.23"
},
"scripts": {
"build": "npm run clean && npm run tsc",
"clean": "npx rimraf dist .nyc_output",
"coverage-text": "npx nyc --all --reporter=text --require ts-node/register npm run test",
"coverage": "node_modules/nyc/bin/nyc.js --all --require ts-node/register npm run test",
"lint": "eslint -v && eslint --ext '.js,.ts' --max-warnings=0 src && tsc -v && tsc --noEmit",
"test": "node -r source-map-support/register ./node_modules/jasmine/bin/jasmine.js --config=./src/spec/support/jasmine.json",
"tsc": "./node_modules/typescript/bin/tsc"
},
"keywords": [
"almost realtime",
"business",
"process",
"dashboard"
],
"author": "loksly@gmail.com",
"license": "MIT",
"devDependencies": {
"@types/bcrypt": "^3.0.0",
"@types/cryptr": "^4.0.1",
"@types/express": "^4.17.9",
"@types/glob-to-regexp": "^0.4.0",
"@types/jasmine": "^3.6.2",
"@types/minimist": "^1.2.1",
"@types/mongodb": "^3.6.3",
"@types/node": "^14.14.20",
"@types/node-schedule": "^1.3.1",
"@types/redis": "^2.8.28",
"@types/require-directory": "^2.1.1",
"@types/sequelize": "^4.28.9",
"@types/supertest": "^2.0.10",
"@types/xml2js": "^0.4.7",
"@typescript-eslint/eslint-plugin": "^4.12.0",
"@typescript-eslint/parser": "^4.12.0",
"eslint": "^7.17.0",
"eslint-config-prettier": "^7.1.0",
"eslint-plugin-prettier": "^3.3.1",
"eslint-plugin-tsdoc": "^0.2.10",
"get-port": "^5.1.1",
"jasmine": "^3.6.3",
"nyc": "^15.1.0",
"prettier": "^2.2.1",
"source-map-support": "^0.5.19",
"supertest": "^6.0.1",
"ts-node": "^9.1.1",
"typescript": "^4.1.3"
}
}