serializer/package.json

33 lines
722 B
JSON
Raw Normal View History

2018-12-30 22:22:16 +00:00
{
"name": "tk-serializer",
2018-12-30 17:12:21 +00:00
"version": "1.0.0",
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",
"prepublishOnly": "npm test"
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",
"url": "https://code.thunderk.net/michael/tk-serializer.git"
},
2018-12-30 22:22:16 +00:00
"license": "MIT",
"devDependencies": {
"@types/jest": "^23.3.10",
"jest": "^23.6.0",
"ts-jest": "^23.10.5",
"ts-node": "^7.0.1",
"typescript": "^3.2.2"
}
2018-12-30 17:12:21 +00:00
}