-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
82 lines (82 loc) · 2.54 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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
{
"name": "openactive-integration-tests",
"version": "1.0.0",
"description": "OpenActive booking system integration tests",
"main": "app.js",
"scripts": {
"start": "jest",
"test": "npm run lint && tsc && npm run doc-gen",
"debug": "node --inspect ./node_modules/jest/bin/jest.js --runInBand",
"lint": "eslint \"test/**/*.js\" \"documentation/**/*.js\" \"test-data-generator/**/*.js\"",
"lint-fix": "npm run lint -- --fix",
"doc-gen": "node documentation/generator.js",
"certificate-validator": "node test/certification/certification-validator-microservice.js",
"test-data-generator": "node test-data-generator/test-data-generator.js"
},
"author": "OpenActive Community <[email protected]>",
"license": "MIT",
"eslintConfig": {},
"dependencies": {
"@openactive/data-model-validator": "^2.0.83",
"@openactive/data-models": "^2.0.318",
"@openactive/models-ts": "^1.0.4",
"@openactive/openactive-openid-client": "file:../openactive-openid-client",
"@openactive/test-interface-criteria": "file:../test-interface-criteria",
"async-mutex": "^0.3.1",
"axios": "^0.19.0",
"chai": "^4.2.0",
"chai-arrays": "^2.2.0",
"chai-url": "^1.0.4",
"chakram": "^1.5.0",
"chalk": "^3.0.0",
"config": "^3.2.4",
"cors": "^2.8.5",
"express": "^4.17.1",
"express-async-handler": "^1.1.4",
"faker": "^5.5.3",
"fast-glob": "^3.2.2",
"fs-extra": "^7.0.1",
"handlebars": "^4.7.3",
"htmlmetaparser": "^2.0.3",
"htmlparser2": "^4.1.0",
"import-fresh": "^3.2.1",
"jest": "^24.9.0",
"jest-environment-node": "^26.6.2",
"jest-spec-reporter": "^1.0.10",
"jszip": "^3.5.0",
"lodash": "^4.17.19",
"luxon": "^1.26.0",
"mkdirp": "^1.0.3",
"moment": "^2.24.0",
"p-memoize": "^3.1.0",
"ramda": "^0.27.1",
"rmfr": "^2.0.0",
"shortid": "^2.2.16",
"showdown": "^2.1.0",
"strip-ansi": "^6.0.0",
"uuid": "^8.3.0",
"yargs": "^16.2.0",
"zod": "^3.22.2"
},
"devDependencies": {
"@types/chai": "^4.2.12",
"@types/config": "0.0.36",
"@types/jest": "^26.0.10",
"@types/lodash": "^4.14.158",
"@types/luxon": "^1.26.5",
"@types/node": "^12.12.50",
"@types/ramda": "^0.27.14",
"@types/request": "^2.48.5",
"@types/shortid": "0.0.29",
"@types/uuid": "^8.0.0",
"babel-eslint": "^10.1.0",
"eslint": "^7.13.0",
"eslint-config-airbnb": "^18.2.1",
"eslint-plugin-import": "^2.22.1",
"typescript": "^5.1.6",
"utility-types": "^3.10.0"
},
"engines": {
"node": "18.17.1"
}
}