preserves/implementations/javascript/package.json

35 lines
962 B
JSON

{
"name": "preserves",
"version": "0.5.0",
"description": "Experimental data serialization format",
"homepage": "https://gitlab.com/preserves/preserves",
"license": "Apache-2.0",
"publishConfig": {
"access": "public"
},
"repository": "gitlab:preserves/preserves",
"main": "dist/preserves.js",
"module": "lib/index.js",
"types": "lib/index.d.ts",
"author": "Tony Garnock-Jones <tonyg@leastfixedpoint.com>",
"devDependencies": {
"@types/jest": "^26.0.19",
"jest": "^26.6.3",
"rollup": "^2.36.1",
"rollup-plugin-terser": "^7.0.2",
"ts-jest": "^26.4.4",
"ts-node-dev": "^1.1.1",
"typescript": "^4.1.3"
},
"scripts": {
"clean": "rm -rf lib dist",
"prepare": "npx tsc && npx rollup -c",
"rollupwatch": "npx rollup -c -w",
"test": "npx jest",
"testwatch": "npx jest --watch",
"veryclean": "npm run clean && rm -rf node_modules",
"watch": "npx tsc -w"
},
"dependencies": {}
}