-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
55 lines (55 loc) · 1.97 KB
/
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
43
44
45
46
47
48
49
50
51
52
53
54
55
{
"name": "@typhonjs-fvtt/validate-manifest",
"description": "Provides validation functions / JSON schemas for FVTT module / system manifests & manifest+ extensions.",
"version": "8.0.0",
"author": "Michael Leahy <[email protected]> (https://github.com/typhonrt)",
"bugs": "https://github.com/typhonjs-fvtt/validate-manifest/issues",
"type": "module",
"main": "./dist/validators.js",
"module": "./dist/validators.js",
"exports": {
".": "./dist/validators.js",
"./plugin": "./src/plugin/ValidateManifest.js"
},
"devDependencies": {
"@apidevtools/json-schema-ref-parser": "9.0.9",
"@rollup/plugin-commonjs": "^24",
"@rollup/plugin-node-resolve": "^15",
"@rollup/plugin-terser": "^0.4.0",
"@typhonjs-plugin/manager": "^0.0.12",
"@typhonjs-utils/better-ajv-errors": "^0.2.0",
"@typhonjs-build-test/node": "^0.0.5",
"ajv": "^8.12.0",
"ajv-cli": "^5",
"ajv-errors": "^3",
"deepmerge": "^4.3.0",
"prettier": "^2.8.0",
"rollup": "^3.21.0"
},
"engines": {
"node": ">=12.0.0"
},
"files": [
"/dist",
"/schema",
"src/plugin/ValidateManifest.js"
],
"homepage": "https://github.com/typhonjs-fvtt/validate-manifest",
"keywords": [
"json schema",
"module.json",
"system.json",
"manifest+",
"fvtt",
"foundry vtt"
],
"license": "MPL-2.0",
"repository": "typhonjs-fvtt/validate-manifest",
"scripts": {
"compile": "node src/merge/merge.js && node src/compile/compileSchema.js && ajv compile --all-errors --strict-types=false -r \"src/schema/shared/**/*.json\" -s \"src/schema/validators/**/*.json\" -c ajv-errors -o dist-intermediate/validator-functions.js && prettier --write \"./dist-intermediate/validator-functions.js\" && rollup --config",
"eslint": "eslint .",
"posttest": "npm run eslint",
"prepublishOnly": "npm run compile && npm run test",
"test": "npm run compile && c8 --reporter=lcov --reporter=text-summary mocha -colors \"test/src/**/*.test.js\""
}
}