-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
95 lines (95 loc) · 2.64 KB
/
package.json
File metadata and controls
95 lines (95 loc) · 2.64 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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
{
"name": "@p2olab/polaris-backend",
"version": "2.1.0",
"main": "./build/src/index.js",
"types": "./build/src/index.d.ts",
"description": "Server backend for POL recipe execution engine",
"author": "Markus Graube <markus.graube@tu-dresden.de>",
"repository": "https://github.com/p2o-lab/polaris-backend.git",
"homepage": "https://github.com/p2o-lab/polaris-backend",
"license": "MIT",
"scripts": {
"start": "ts-node ./src/index.ts",
"dist": "node ./build/index.js",
"testserver": "ts-node ./src/testServer.ts",
"test": "nyc mocha --retries 3 -r ts-node/register test/**/*.ts test/**/**/*.ts",
"typedoc": "typedoc --mode file --module commonjs --out typedoc/ --target ES6 --excludePrivate --readme none src/",
"apidoc": "apidoc -i src/server/ -o apidoc",
"doc": "npm run apidoc && npm run typedoc",
"build": "tsc"
},
"bin": {
"polaris-backend": "./bin/polaris-backend",
"test-pea": "./bin/test-pea"
},
"files": [
"build",
"assets"
],
"dependencies": {
"@p2olab/polaris-interface": "^2.3.0",
"assign-deep": "^1.0.1",
"command-line-args": "^5.1.1",
"command-line-usage": "^6.0.2",
"cors": "^2.8.5",
"expr-eval": "^2.0.2",
"express": "^4.17.1",
"express-async-handler": "^1.1.4",
"javascript-state-machine": "^3.1.0",
"json-parse-better-errors": "^1.0.2",
"minimist": ">=1.2.3",
"node-opcua": "^2.6.4",
"node-pid-controller": "^1.0.1",
"promise-timeout": "^1.3.0",
"timeout-as-promise": "^1.0.0",
"typescript-logging": "^0.6.4",
"underscore": "^1.10.2",
"uuid": "^8.1.0",
"ws": "^7.2.0",
"yn": "^3.1.1"
},
"devDependencies": {
"@types/body-parser": "^1.17.1",
"@types/chai": "^4.2.11",
"@types/chai-as-promised": "^7.1.2",
"@types/command-line-args": "^5.0.0",
"@types/command-line-usage": "^5.0.1",
"@types/cors": "^2.8.6",
"@types/express": "^4.17.6",
"@types/mocha": "^7.0.1",
"@types/node": "^14.0.9",
"@types/underscore": "^1.10.7",
"@types/uuid": "^8.0.0",
"@types/ws": "^7.2.0",
"apidoc": "^0.23.0",
"chai": "^4.2.0",
"chai-as-promised": "^7.1.1",
"chai-http": "^4.3.0",
"mocha": "7.2.0",
"nyc": "^15.1.0",
"strict-event-emitter-types": "^2.0.0",
"supertest": "^4.0.2",
"ts-node": "^8.10.2",
"tslint": "^5.20.1",
"typedoc": "^0.17.8",
"typescript": "^3.9.6"
},
"nyc": {
"include": [
"src/**/*.ts",
"src/**/*.tsx"
],
"extension": [
".ts",
".tsx"
],
"require": [
"ts-node/register"
],
"reporter": [
"text-summary"
],
"sourceMap": true,
"instrument": true
}
}