serializer/package.json

44 lines
1.1 KiB
JSON
Raw Normal View History

2018-12-30 22:22:16 +00:00
{
"name": "tk-serializer",
2019-09-25 21:18:40 +00:00
"version": "1.1.2",
2019-09-22 21:27:52 +00:00
"description": "Typescript/Javascript serializer, with full object reconstruction",
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",
2019-09-25 21:18:40 +00:00
"main": "dist/tk-serializer.umd.js",
"module": "dist/tk-serializer.modern.js",
"types": "dist/index.d.ts",
2019-09-13 11:57:21 +00:00
"scripts": {
2019-11-07 22:09:01 +00:00
"build": "microbundle build -f modern,umd",
"test": "jest",
2019-09-13 11:57:21 +00:00
"prepare": "npm run build",
"prepublishOnly": "npm test",
2019-11-07 22:09:01 +00:00
"normalize": "tk-base",
"dev": "run-p dev:*",
"dev:test": "jest --watchAll",
"dev:build": "microbundle watch -f modern,umd",
"dev:serve": "live-server --host=localhost --port=5000 --no-browser --ignorePattern='.*\\.d\\.ts' dist"
2019-09-13 11:57:21 +00:00
},
"files": [
"/src",
"/dist"
],
2018-12-30 22:22:16 +00:00
"devDependencies": {
2019-11-07 22:09:01 +00:00
"tk-base": "^0.2.5"
},
"bugs": {
"url": "https://gitlab.com/thunderk/tk-serializer/issues"
},
"homepage": "https://code.thunderk.net/tslib/tk-serializer",
"keywords": [
"typescript"
]
2019-09-22 21:27:52 +00:00
}