preserves/implementations/javascript/package.json

30 lines
771 B
JSON
Raw Normal View History

{
"name": "preserves",
"version": "0.4.0",
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",
"main": "src/index.js",
"author": "Tony Garnock-Jones <tonyg@leastfixedpoint.com>",
"devDependencies": {
"@types/jest": "^26.0.19",
"jest": "^26.6.3",
"ts-jest": "^26.4.4",
"ts-node-dev": "^1.1.1",
"typescript": "^4.1.3"
},
"scripts": {
"prepare": "npx tsc",
"watch": "npx tsc -w",
"clean": "rm -rf lib",
"veryclean": "npm run clean && rm -rf node_modules",
"test": "npx jest",
"testwatch": "npx jest -w"
},
"dependencies": {}
}