preserves/implementations/javascript/package.json

35 lines
962 B
JSON
Raw Normal View History

{
"name": "preserves",
"version": "0.5.3",
2018-11-13 14:08:55 +00:00
"description": "Experimental data serialization format",
2019-08-31 20:04:52 +00:00
"homepage": "https://gitlab.com/preserves/preserves",
"license": "Apache-2.0",
"publishConfig": {
"access": "public"
},
2019-08-31 20:04:52 +00:00
"repository": "gitlab:preserves/preserves",
2021-01-17 12:22:56 +00:00
"main": "dist/preserves.js",
"module": "lib/index.js",
2021-01-09 15:21:25 +00:00
"types": "lib/index.d.ts",
"author": "Tony Garnock-Jones <tonyg@leastfixedpoint.com>",
"devDependencies": {
"@types/jest": "^26.0.19",
"jest": "^26.6.3",
2021-01-07 19:09:57 +00:00
"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": {
2021-01-07 19:09:57 +00:00
"clean": "rm -rf lib dist",
"prepare": "npx tsc && npx rollup -c",
"rollupwatch": "npx rollup -c -w",
"test": "npx jest",
2021-01-28 07:59:02 +00:00
"testwatch": "npx jest --watch",
2021-01-07 19:09:57 +00:00
"veryclean": "npm run clean && rm -rf node_modules",
"watch": "npx tsc -w"
},
"dependencies": {}
}