-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
49 lines (49 loc) · 1.32 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
{
"name": "@openactive/rpde-validator",
"version": "2.0.21",
"description": "A library to walk and validate an RPDE feed",
"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/rpde-validator.git"
},
"bugs": {
"url": "https://github.com/openactive/rpde-validator/issues"
},
"license": "MIT",
"scripts": {
"lint": "eslint \"src/**/*.js\"",
"lint-fix": "eslint \"src/**/*.js\" --fix",
"e2e": "node src/e2e.js",
"pretest": "npm run lint",
"test": "npm run test-no-lint",
"test-no-lint": "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"
},
"devDependencies": {
"eslint": "^8.36.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-plugin-import": "^2.27.5",
"jasmine": "^4.6.0"
},
"dependencies": {
"@openactive/data-model-validator": "^2.0.0",
"cache-parser": "^1.2.4",
"lodash": "^4.17.21",
"luxon": "^1.4.2",
"node-fetch": "^2.2.0"
}
}