@hjk/arr
Version:
52 lines (51 loc) • 1.54 kB
JSON
{
"name": "@hjk/arr",
"description": "",
"keywords": [
"typescript",
"Array",
"utils",
"helpers"
],
"version": "0.1.32",
"main": "dist/cjs/index.js",
"module": "dist/es/index.js",
"types": "dist/types/index.d.ts",
"files": [
"dist/**/*"
],
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"lint": "eslint src/**/*",
"clean": "rimraf dist",
"build": "npm run clean && npm run build:types && npm run build:cjs && npm run build:es",
"build:types": "tsc --pretty --noErrorTruncation --emitDeclarationOnly true --declarationMap true --outDir dist/types",
"build:cjs": "tsc --pretty --noErrorTruncation --removeComments --declaration false --outDir dist/cjs",
"build:es": "tsc --pretty --noErrorTruncation --removeComments --declaration false -m es6 --outDir dist/es",
"prepublishOnly": "npm run lint",
"prepare": "npm run build",
"preversion": "npm run lint",
"version": "git add -A src",
"postversion": "git push && git push --tags"
},
"author": "hjakk",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/hjakk/arr.git"
},
"bugs": {
"url": "https://github.com/hjakk/arr/issues"
},
"homepage": "https://github.com/hjakk/arr#readme",
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^1.12.0",
"@typescript-eslint/parser": "^1.12.0",
"eslint": "^6.0.1",
"rimraf": "^2.6.3",
"typescript": "^3.5.3"
},
"dependencies": {
"@hjk/is": "^0.1.5"
}
}