-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 968 Bytes
/
package.json
File metadata and controls
43 lines (43 loc) · 968 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
41
42
43
{
"name": "@jambonz/upgrade-manifest",
"version": "1.0.0",
"description": "JSON Schema and validator for jambonz upgrade-package manifests",
"main": "index.js",
"scripts": {
"test": "node test/",
"lint": "eslint lib/ index.js test/"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jambonz/upgrade-manifest.git"
},
"keywords": [
"jambonz",
"json-schema",
"ajv",
"upgrade",
"manifest"
],
"author": "Dave Horton",
"license": "MIT",
"bugs": {
"url": "https://github.com/jambonz/upgrade-manifest/issues"
},
"homepage": "https://github.com/jambonz/upgrade-manifest#readme",
"dependencies": {
"ajv": "^8.17.1",
"ajv-formats": "^3.0.1",
"debug": "^4.3.4"
},
"devDependencies": {
"eslint": "^9.3.0",
"eslint-plugin-promise": "^6.2.0",
"globals": "^15.3.0"
},
"files": [
"index.js",
"lib/",
"upgrade-manifest.schema.json",
"examples/"
]
}