-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
42 lines (42 loc) · 967 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
39
40
41
42
{
"name": "@acot/schema-validator",
"version": "0.0.19",
"description": "A simple wrapper module for schema-utils.",
"homepage": "https://github.com/acot-a11y/acot/tree/main/packages/schema-validator",
"bugs": {
"url": "https://github.com/acot-a11y/acot/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/acot-a11y/acot.git",
"directory": "packages/schema-validator"
},
"license": "MIT",
"author": "wadackel <[email protected]>",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"files": [
"lib",
"!**/__mocks__",
"!**/__tests__"
],
"scripts": {
"build": "tsc",
"test": "jest"
},
"jest": {
"preset": "ts-jest",
"rootDir": "src",
"testEnvironment": "node",
"testMatch": [
"**/__tests__/**/*.test.ts?(x)"
]
},
"dependencies": {
"@types/json-schema": "^7.0.5",
"schema-utils": "^3.0.0"
},
"publishConfig": {
"access": "public"
}
}