-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 878 Bytes
/
package.json
File metadata and controls
40 lines (40 loc) · 878 Bytes
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
{
"name": "@jambonz/schema",
"version": "0.3.6",
"description": "JSON Schema definitions and validation for jambonz verb applications",
"main": "index.js",
"scripts": {
"test": "node test/",
"lint": "eslint lib/ index.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jambonz/schema.git"
},
"author": "Dave Horton",
"license": "MIT",
"bugs": {
"url": "https://github.com/jambonz/schema/issues"
},
"homepage": "https://github.com/jambonz/schema#readme",
"dependencies": {
"ajv": "^8.17.1",
"debug": "^4.3.4"
},
"devDependencies": {
"eslint": "^9.3.0",
"eslint-plugin-promise": "^6.2.0",
"globals": "^15.3.0"
},
"files": [
"index.js",
"lib/",
"verbs/",
"components/",
"callbacks/",
"commands/",
"docs/",
"jambonz-app.schema.json",
"AGENTS.md"
]
}