xuxiaobo-bobo 842b34b5ca 0218
2024-02-18 15:40:48 +08:00

79 lines
2.0 KiB
JSON

{
"name": "pvtsutils",
"version": "1.3.5",
"description": "pvtsutils is a set of common utility functions used in various Peculiar Ventures TypeScript based projects.",
"main": "build/index.js",
"module": "build/index.es.js",
"browser": "build/index.js",
"types": "build/index.d.ts",
"files": [
"build/**/*.{ts,js}",
"README.md",
"LICENSE"
],
"scripts": {
"test": "mocha",
"clear": "rimraf build/*",
"rebuild": "npm run clear && npm run build",
"build": "rollup -c",
"lint": "tslint -p .",
"lint:fix": "tslint --fix -p .",
"prepub": "npm run lint && npm run rebuild",
"pub": "npm version patch && npm publish",
"postpub": "git push && git push --tags origin master",
"prepub:next": "npm run lint && npm run rebuild",
"pub:next": "npm version prerelease --preid=next && npm publish --tag next",
"postpub:next": "git push",
"coverage": "nyc npm test",
"coveralls": "nyc report --reporter=text-lcov | coveralls"
},
"keywords": [
"typescript",
"helper",
"util",
"convert",
"hex",
"utf8",
"utf16",
"base64",
"base64url",
"binary",
"assign"
],
"author": "PeculiarVentures",
"contributors": [
"Miroshin Stepan<microshine@mail.ru>"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/PeculiarVentures/pvtsutils"
},
"bugs": {
"url": "https://github.com/PeculiarVentures/pvtsutils/issues"
},
"homepage": "https://github.com/PeculiarVentures/pvtsutils#readme",
"dependencies": {
"tslib": "^2.6.1"
},
"devDependencies": {
"@types/mocha": "^10.0.1",
"@types/node": "^20.4.8",
"coveralls": "^3.1.1",
"mocha": "^10.2.0",
"nyc": "^15.1.0",
"rimraf": "^5.0.1",
"rollup": "^3.27.2",
"rollup-plugin-dts": "^5.3.1",
"rollup-plugin-typescript2": "^0.35.0",
"ts-node": "^10.9.1",
"tslint": "^6.1.3",
"typescript": "^5.1.6"
},
"resolutions": {
"json5": "^2.2.2",
"semver": "^6.3.1",
"tough-cookie": "^4.1.3"
}
}