-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
62 lines (62 loc) · 1.78 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
{
"name": "@openactive/data-model-validator",
"version": "2.0.83",
"description": "A library to allow a developer to validate a JSON document against the OpenActive Modelling Opportunity Specification",
"homepage": "https://openactive.io",
"author": "OpenActive Community <[email protected]>",
"keywords": [
"openactive",
"odi",
"validator",
"json"
],
"main": "src/index.js",
"engines": {
"node": "14.16.0"
},
"repository": {
"type": "git",
"url": "https://github.com/openactive/data-model-validator.git"
},
"bugs": {
"url": "https://github.com/openactive/data-model-validator/issues"
},
"license": "MIT",
"dependencies": {
"@openactive/data-models": "^2.0.294",
"@types/lodash": "^4.14.182",
"axios": "^0.19.2",
"currency-codes": "^1.5.1",
"html-entities": "^1.3.1",
"jsonpath": "^1.0.2",
"lodash": "^4.17.21",
"moment": "^2.24.0",
"rrule": "^2.6.2",
"striptags": "^3.1.1",
"uritemplate": "^0.3.4",
"validator": "^10.11.0",
"write-file-atomic": "^3.0.3"
},
"devDependencies": {
"@types/jasmine": "^5.1.4",
"@types/jasmine-expect": "^3.8.1",
"@types/node": "^20.11.24",
"eslint": "^8.36.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-plugin-import": "^2.27.5",
"jasmine": "^4.6.0",
"nock": "^13.3.0",
"sync-request": "^6.1.0",
"typescript": "^5.3.3"
},
"scripts": {
"lint": "eslint \"src/**/*.js\"",
"lint-fix": "eslint \"src/**/*.js\" --fix",
"pretest": "npm run lint && tsc",
"test": "npm run run-tests",
"run-tests": "jasmine",
"test-debug": "node --inspect-brk -i ./node_modules/jasmine/bin/jasmine.js",
"postpublish": "git push",
"publish-patch": "npm test && git pull && git push && npm version patch && npm publish"
}
}