forked from typhonjs-fvtt-lib/validate-manifest
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
55 lines (55 loc) · 1.98 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": "0.0.1",
"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.0",
"@rollup/plugin-commonjs": "^19.0.0",
"@rollup/plugin-node-resolve": "^13.0.0",
"@typhonjs-plugin/manager": "^0.0.10",
"@typhonjs-utils/better-ajv-errors": "^0.0.10",
"@typhonjs-utils/build-test": "^0.1.0",
"ajv": "^7.0.0",
"ajv-cli": "^4.0.0",
"ajv-errors": "^2.0.0",
"deepmerge": "^4.0.0",
"prettier": "^2.0.0",
"rollup": "^2.0.0",
"rollup-plugin-terser": "^7.0.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\""
}
}