serializer/package.json
2019-09-22 23:27:52 +02:00

32 lines
771 B
JSON

{
"name": "tk-serializer",
"version": "1.1.1",
"description": "Typescript/Javascript serializer, with full object reconstruction",
"author": {
"name": "Michaël Lemaire",
"url": "https://thunderk.net"
},
"repository": {
"type": "git",
"url": "https://code.thunderk.net/tslib/tk-serializer.git"
},
"license": "ISC",
"source": "src/index.ts",
"main": "dist/tk-serializer.js",
"umd:main": "dist/tk-serializer.js",
"types": "dist/src/index.d.ts",
"scripts": {
"build": "npx tk-base build",
"test": "npx tk-base test",
"prepare": "npm run build",
"prepublishOnly": "npm test",
"normalize": "npx tk-base normalize"
},
"files": [
"/src",
"/dist"
],
"devDependencies": {
"tk-base": "^0.1.7"
}
}