preserves/implementations/javascript/packages/schema/package.json

40 lines
1.2 KiB
JSON
Raw Normal View History

{
"name": "@preserves/schema",
2021-05-20 20:36:07 +00:00
"version": "0.9.0",
"description": "Schema support for Preserves data serialization format",
"homepage": "https://gitlab.com/preserves/preserves",
"license": "Apache-2.0",
2021-03-10 22:32:14 +00:00
"publishConfig": {
"access": "public"
},
"repository": "gitlab:preserves/preserves",
"main": "dist/preserves-schema.js",
"module": "lib/index.js",
"types": "lib/index.d.ts",
"author": "Tony Garnock-Jones <tonyg@leastfixedpoint.com>",
"scripts": {
2021-03-11 09:56:49 +00:00
"regenerate": "rm -rf ./src/gen && ./bin/preserves-schema-ts.js --output ./src/gen ../../../../schema/schema.prs",
"clean": "rm -rf lib dist",
"prepare": "tsc && rollup -c",
"rollupwatch": "rollup -c -w",
"test": "jest",
"testwatch": "jest --watch",
"veryclean": "yarn run clean && rm -rf node_modules",
"watch": "tsc -w"
},
"bin": {
2021-03-14 21:53:13 +00:00
"preserves-schema-ts": "./bin/preserves-schema-ts.js",
"preserves-schemac": "./bin/preserves-schemac.js"
},
"dependencies": {
"@preserves/core": "^0.15.0",
2021-03-11 09:56:49 +00:00
"@types/glob": "^7.1.3",
"@types/minimatch": "^3.0.3",
"chalk": "^4.1.0",
2021-03-11 22:02:18 +00:00
"chokidar": "^3.5.1",
2021-04-01 19:57:49 +00:00
"commander": "^7.2.0",
2021-03-11 09:56:49 +00:00
"glob": "^7.1.6",
2021-04-01 19:57:49 +00:00
"minimatch": "^3.0.4"
}
}