-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
69 lines (69 loc) · 2.19 KB
/
package.json
File metadata and controls
69 lines (69 loc) · 2.19 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
{
"name": "simaas_api",
"version": "0.7.0-beta.1",
"description": "Microservice which implements the public API of the Simulation as a Service-Implementation",
"main": "index.js",
"config": {
"oas3": "./templates/simaas_oas3.json",
"oas3_flat": "./templates/simaas_oas3_flat.yaml"
},
"scripts": {
"prestart": "npm run api-resolve",
"lint": "standard",
"lint-fix": "standard --fix",
"format": "prettier-standard --lint '**/*.{js,json}'",
"api-lint": "spectral lint $npm_package_config_oas3",
"api-serve": "speccy serve $npm_package_config_oas3",
"api-resolve": "speccy resolve $npm_package_config_oas3 > $npm_package_config_oas3_flat",
"test-api": "mocha test/test_api.js --timeout 5000",
"lint-all": "npm run lint && npm run api-lint"
},
"repository": {
"type": "git",
"url": "git+https://github.com/UdSAES/simaas_api.git"
},
"author": "Moritz Stüber <moritz.stueber@aut.uni-saarland.de>",
"contributors": [
"Florian Wagner <florian.wagner@aut.uni-saarland.de>"
],
"bugs": {
"url": "https://github.com/UdSAES/simaas_api/issues"
},
"homepage": "https://github.com/UdSAES/simaas-api#a-simulation-as-a-service-implementation-api",
"dependencies": {
"@apidevtools/json-schema-ref-parser": "^9.0.9",
"@rdfjs/namespace": "^1.1.0",
"axios": "^0.26.0",
"body-parser": "^1.19.0",
"bunyan": "^1.8.15",
"celery-ts": "^1.1.0",
"cors": "^2.8.5",
"delay": "^5.0.0",
"express": "^4.17.1",
"express-async-errors": "^3.1.1",
"express-request-id": "^1.4.1",
"extract-zip": "^2.0.1",
"fs-extra": "^10.0.0",
"http-proxy-middleware": "^2.0.1",
"jsonld-streaming-parser": "^2.4.1",
"jsonld-streaming-serializer": "^1.3.0",
"lodash": "^4.17.21",
"moment": "^2.29.1",
"n3": "^1.11.2",
"node-cache": "^5.1.2",
"nunjucks": "^3.2.3",
"openapi-backend": "^5.0.0",
"processenv": "^3.0.9",
"promise-status-async": "^1.2.10",
"rdf-store-stream": "^1.3.0",
"uuid": "^8.3.2"
},
"devDependencies": {
"@stoplight/spectral": "^5.9.2",
"chai": "^4.3.4",
"mocha": "^9.1.3",
"prettier-standard": "^16.4.1",
"speccy": "^0.11.0",
"standard": "^16.0.4"
}
}