typepool
Version:
Object pooling inspired by generic-pool - with Typing
54 lines (53 loc) • 1.23 kB
JSON
{
"name": "typepool",
"typings": "dist/index.d.ts",
"main": "dist/index.js",
"files": [
"dist",
"package.json",
"README.md"
],
"scripts": {
"build": "tsc --project tsconfig.json",
"build:watch": "tsc --project tsconfig.json --watch",
"clean": "rm -Rf dist",
"prepublish": "npm run clean && npm run build",
"test": "jest --no-cache",
"release": "npm version patch && git push --tags"
},
"jest": {
"verbose": true,
"moduleDirectories": [
"./node_modules",
"./src"
],
"transform": {
".(ts|tsx)": "<rootDir>/node_modules/ts-jest/preprocessor.js"
},
"testRegex": "src\\/test.*\\.spec\\.(ts|tsx)$",
"moduleFileExtensions": [
"ts",
"tsx",
"js"
]
},
"devDependencies": {
"@types/bluebird": "^3.5.27",
"@types/jest": "^24.0.15",
"@types/lodash": "^4.14.136",
"@types/node": "12.6.8",
"babel-eslint": "^10.0.2",
"eslint": "^6.1.0",
"gulp": "^4.0.2",
"jest": "^24.8.0",
"ts-jest": "^24.0.2",
"tslint": "^5.18.0",
"typescript": "^3.5.3",
"bluebird": "^3.5.5",
"typeguard": "^0.0.16"
},
"peerDependencies": {
"typeguard": "^0.0.16"
},
"version": "1.0.12"
}