-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.21 KB
/
package.json
File metadata and controls
50 lines (50 loc) · 1.21 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
{
"name": "openactive-feednormaliser",
"version": "0.0.0",
"description": "Harvests and normalises OpenActive Opportunity feeds to a common representation",
"main": "index.js",
"type": "module",
"engines": {
"node": "13.9.0"
},
"scripts": {
"start-webserver": "node ./src/bin/web-server.js",
"start-webserver-dev": "nodemon",
"test": "mocha"
},
"repository": {
"type": "git",
"url": "git+https://github.com/openactive/feed-normaliser.git"
},
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/openactive/feed-normaliser/issues"
},
"homepage": "https://github.com/openactive/feed-normaliser#readme",
"dependencies": {
"@openactive/data-model-validator": "^2.0.34",
"@sentry/node": "^5.20.1",
"ajv": "^6.12.3",
"cheerio": "^1.0.0-rc.3",
"express": "^4.17.1",
"iso8601-duration": "^1.2.0",
"md5": "^2.3.0",
"node-fetch": "^2.6.1",
"object-hash": "^2.0.3",
"pg": "^8.3.0",
"postgres-migrations": "^4.0.3",
"rrule": "^2.6.4"
},
"devDependencies": {
"mocha": "^7.1.2",
"nodemon": "^2.0.4"
},
"nodemonConfig": {
"exec": "npm run start-webserver",
"watch": [
"lib/*",
"bin/*"
]
}
}