35 lines
768 B
JSON
35 lines
768 B
JSON
{
|
|
"name": "tk-serializer",
|
|
"version": "1.0.1",
|
|
"description": "Serializer of javascript objects",
|
|
"main": "dist/main.js",
|
|
"types": "dist/main.d.ts",
|
|
"scripts": {
|
|
"build": "tsc",
|
|
"test": "jest",
|
|
"prepare": "npm run build",
|
|
"prepublishOnly": "npm test",
|
|
"codecov": "codecov"
|
|
},
|
|
"files": [
|
|
"dist"
|
|
],
|
|
"author": {
|
|
"name": "Michael Lemaire",
|
|
"email": "michael@thunderk.net",
|
|
"url": "https://thunderk.net"
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/thunderk/tk-serializer.git"
|
|
},
|
|
"license": "MIT",
|
|
"devDependencies": {
|
|
"@types/jest": "^23.3.10",
|
|
"codecov": "^3.1.0",
|
|
"jest": "^23.6.0",
|
|
"ts-jest": "^23.10.5",
|
|
"ts-node": "^7.0.1",
|
|
"typescript": "^3.2.2"
|
|
}
|
|
}
|