serializer/package.json

36 lines
768 B
JSON
Raw Normal View History

2018-12-30 22:22:16 +00:00
{
"name": "tk-serializer",
2018-12-30 17:19:20 +00:00
"version": "1.0.1",
2018-12-30 22:22:16 +00:00
"description": "Serializer of javascript objects",
"main": "dist/main.js",
"types": "dist/main.d.ts",
"scripts": {
"build": "tsc",
"test": "jest",
2018-12-30 17:12:21 +00:00
"prepare": "npm run build",
2018-12-30 17:55:18 +00:00
"prepublishOnly": "npm test",
"codecov": "codecov"
2018-12-30 22:22:16 +00:00
},
"files": [
"dist"
],
2018-12-30 17:12:21 +00:00
"author": {
"name": "Michael Lemaire",
"email": "michael@thunderk.net",
"url": "https://thunderk.net"
},
"repository": {
"type": "git",
2018-12-30 17:19:20 +00:00
"url": "https://github.com/thunderk/tk-serializer.git"
2018-12-30 17:12:21 +00:00
},
2018-12-30 22:22:16 +00:00
"license": "MIT",
"devDependencies": {
"@types/jest": "^23.3.10",
2018-12-30 17:55:18 +00:00
"codecov": "^3.1.0",
2018-12-30 22:22:16 +00:00
"jest": "^23.6.0",
"ts-jest": "^23.10.5",
"ts-node": "^7.0.1",
"typescript": "^3.2.2"
}
2018-12-30 17:19:20 +00:00
}