serializer/package.json

32 lines
737 B
JSON
Raw Normal View History

2018-12-30 22:22:16 +00:00
{
"name": "tk-serializer",
2019-09-13 11:57:21 +00:00
"version": "1.1.0",
2018-12-30 22:22:16 +00:00
"description": "Serializer of javascript objects",
2018-12-30 17:12:21 +00:00
"author": {
2019-09-13 11:57:21 +00:00
"name": "Michaël Lemaire",
2018-12-30 17:12:21 +00:00
"url": "https://thunderk.net"
},
"repository": {
"type": "git",
2019-09-13 11:57:21 +00:00
"url": "https://code.thunderk.net/tslib/tk-serializer.git"
2018-12-30 17:12:21 +00:00
},
2019-09-13 11:57:21 +00:00
"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"
],
2018-12-30 22:22:16 +00:00
"devDependencies": {
2019-09-16 16:28:06 +00:00
"tk-base": "^0.1.3"
2018-12-30 22:22:16 +00:00
}
2019-09-16 16:28:06 +00:00
}