-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
46 lines (46 loc) · 1.12 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
{
"name": "@openactive/dataset-utils",
"version": "2.0.1",
"description": "Utilities for working with OpenActive data catalogs and dataset sites",
"homepage": "https://www.openactive.io",
"main": "index.js",
"scripts": {
"test": "eslint && tsc && jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/openactive/dataset-utils.git"
},
"keywords": [
"dataset-utils",
"openactive"
],
"author": "OpenActive Community <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/openactive/dataset-utils/issues"
},
"dependencies": {
"axios": "^1.5.0",
"htmlmetaparser": "^2.1.2",
"htmlparser2": "^6.0.1"
},
"devDependencies": {
"@types/chai": "^4.3.6",
"@types/jest": "^29.5.4",
"@types/node": "^20.5.9",
"chai": "^4.3.8",
"eslint": "^8.48.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-plugin-import": "^2.28.1",
"jest": "^29.6.4",
"typescript": "^5.0.4"
},
"jest": {
"testEnvironment": "node",
"testMatch": [
"**/test/*-test.[tj]s?(x)"
]
}
}