serializer/package.json

33 lines
815 B
JSON

{
"name": "tk-serializer",
"version": "1.1.2",
"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.umd.js",
"module": "dist/tk-serializer.modern.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "npx --no-install tk-base build",
"test": "npx --no-install tk-base test",
"prepare": "npm run build",
"prepublishOnly": "npm test",
"normalize": "npx --no-install tk-base normalize"
},
"files": [
"/src",
"/dist"
],
"devDependencies": {
"tk-base": "^0.2.0"
}
}