-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
38 lines (38 loc) · 885 Bytes
/
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
{
"name": "@openactive/models-ts",
"version": "1.0.3",
"description": "JavaScript/TypeScript implementation of OpenActive's data model",
"main": "lib/index.js",
"typings": "lib/index.d.ts",
"scripts": {
"build": "tsc",
"test": "tsc && mocha"
},
"author": "OpenActive Community <[email protected]>",
"keywords": [
"openactive",
"models",
"validator"
],
"repository": {
"type": "git",
"url": "git+https://github.com/openactive/models-ts.git"
},
"bugs": {
"url": "https://github.com/openactive/models-ts/issues"
},
"license": "ISC",
"devDependencies": {
"@types/chai": "^4.2.18",
"@types/joi": "^14.3.4",
"@types/mocha": "^8.2.2",
"chai": "^4.3.4",
"mocha": "^8.4.0",
"ts-node": "^9.1.1",
"typescript": "^4.2.4"
},
"dependencies": {
"@types/node": "^15.3.0",
"joi": "^14.3.1"
}
}