typescript-array-utils
Version:
Immutable array manipulation methods
43 lines (42 loc) • 910 B
JSON
{
"name": "typescript-array-utils",
"version": "0.1.4",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"description": "Immutable array manipulation methods",
"keywords": [
"typescript",
"array",
"utility",
"immutable",
"manipulation"
],
"scripts": {
"prepublishOnly": "tsc -d",
"compile": "tsc -d",
"test": "ts-node node_modules/tape/bin/tape tests/*.test.ts",
"lint": "tslint src/* src/**/* test/*"
},
"author": "Daniel Król",
"license": "MIT",
"devDependencies": {
"@types/tape": "^4.2.28",
"tape": "^4.6.3",
"ts-node": "^3.3.0",
"tslint": "^5.1.0",
"typescript": "~2.3.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mleko/typescript-array-utils.git"
},
"files": [
"index.ts",
"LICENSE.md",
"README.md",
"tsconfig.json",
"tslint.json",
"src",
"dist"
]
}