map-ext
Version:
48 lines (47 loc) • 1.19 kB
JSON
{
"name": "map-ext",
"version": "0.1.5",
"description": "map-ext",
"main": "cjs/index.js",
"types": "esm/index.d.ts",
"scripts": {
"build-commonjs": "npx tsc --module commonjs --outDir cjs/",
"build-module": "npx tsc --module es2022 --outDir esm/",
"build-all": "npm run build-commonjs && npm run build-module"
},
"keywords": [
"map-ext", "weak-map-ext",
"typescript", "ts", "small",
"100-procent-coverage",
"types", "typed"
],
"repository": {
"type": "git",
"url": "git+https://github.com/jaenster/map-ext.git"
},
"author": "Jaenster",
"license": "MIT",
"devDependencies": {
"@types/jest": "^27.0.2",
"@types/node": "^16.11.6",
"jest": "^27.0.2",
"ts-jest": "^27.0.2",
"ts-node": "^8.6.2",
"typescript": "^4.5.4"
},
"exports": {
"require": "./cjs/index.js",
"import": "./esm/index.js"
},
"jest": {
"transform": {
".(ts|tsx)": "<rootDir>/node_modules/ts-jest/preprocessor.js"
},
"testRegex": "(/__tests__/.*|\\.(test|spec))\\.(ts|tsx|js)$",
"moduleFileExtensions": [
"ts",
"tsx",
"js"
]
}
}