-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
38 lines (38 loc) · 1017 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": "@offen/esbuild-plugin-jsonschema",
"version": "1.1.0",
"description": "Compile JSON schema definitions on import using esbuild",
"main": "index.js",
"scripts": {
"test": "tape test/test.js",
"posttest": "standard",
"preversion": "npm test",
"version": "changes --commits",
"postversion": "git push --follow-tags && npm publish --access public"
},
"repository": {
"type": "git",
"url": "git+https://github.com/offen/esbuild-plugin-jsonschema.git"
},
"keywords": [
"esbuild",
"ajv",
"json-schema"
],
"author": "Frederik Ring <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/offen/esbuild-plugin-jsonschema/issues"
},
"homepage": "https://github.com/offen/esbuild-plugin-jsonschema#readme",
"dependencies": {
"ajv": "^8.0.5",
"ajv-formats": "^2.0.2"
},
"devDependencies": {
"@studio/changes": "^2.0.1",
"esbuild": "^0.12.5",
"standard": "^16.0.3",
"tape": "^5.1.1"
}
}