typescript-immutable-utils
Version:
Type-safe immutability helpers for simple objects and arrays
39 lines (38 loc) • 1.06 kB
JSON
{
"name": "typescript-immutable-utils",
"version": "0.1.2",
"description": "Type-safe immutability helpers for simple objects and arrays",
"main": "lib/index.js",
"module": "es/index.js",
"typings": "lib/index.d.ts",
"files": [
"src",
"es",
"lib"
],
"scripts": {
"clean": "rimraf lib es",
"lint": "tslint -c tslint.json src/**/*.ts tests/**/*.ts",
"test": "ts-node -P tsconfig.tests.json node_modules/tape/bin/tape tests/*.ts",
"build:es": "tsc",
"build:lib": "tsc --outDir lib --module commonjs",
"build": "npm run build:es && npm run build:lib",
"prepublish": "npm run clean && npm run lint && npm run build"
},
"keywords": [
"typescript",
"immutable",
"immutability"
],
"repository": "aikoven/typescript-immutable-utils",
"author": "Daniel Lytkin <dan.lytkin@gmail.com>",
"license": "MIT",
"devDependencies": {
"@types/tape": "^4.2.29",
"rimraf": "^2.6.1",
"tape": "^4.6.3",
"ts-node": "^3.0.2",
"tslint": "^4.5.1",
"typescript": "^2.3.4"
}
}