You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
62 lines
1.6 KiB
62 lines
1.6 KiB
{ |
|
"name": "immutability-helper", |
|
"version": "3.1.1", |
|
"description": "mutate a copy of data without changing the original source", |
|
"main": "index.js", |
|
"typings": "index.d.ts", |
|
"scripts": { |
|
"lint": "tslint -p tsconfig.test.json", |
|
"prebuild": "rimraf index.js *.d.ts", |
|
"build": "tsc", |
|
"pretest": "rimraf ./coverage index.js", |
|
"test": "npm run lint && npm run jest && npm run smoke-test", |
|
"jest": "jest --coverage", |
|
"prewatch": "npm run lint", |
|
"watch": "jest --watch test.ts", |
|
"presmoke-test": "npm run build && rimraf smoke-test", |
|
"smoke-test": "node smoke-test.js", |
|
"postsmoke-test": "rimraf smoke-test index.js", |
|
"prepublishOnly": "npm run build" |
|
}, |
|
"jest": { |
|
"preset": "ts-jest", |
|
"testEnvironment": "node", |
|
"verbose": true, |
|
"coverageDirectory": "coverage", |
|
"coverageReporters": [ |
|
"lcov", |
|
"text" |
|
], |
|
"coverageThreshold": { |
|
"global": { |
|
"branches": 100, |
|
"functions": 100, |
|
"lines": 100, |
|
"statements": 100 |
|
} |
|
} |
|
}, |
|
"keywords": [ |
|
"immutability" |
|
], |
|
"author": "Moshe Kolodny", |
|
"license": "MIT", |
|
"devDependencies": { |
|
"@types/invariant": "^2.2.29", |
|
"@types/jest": "^23.3.10", |
|
"coveralls": "^3.0.2", |
|
"jest": "^24.8.0", |
|
"rimraf": "^2.6.2", |
|
"ts-jest": "^23.10.5", |
|
"tslint": "^5.11.0", |
|
"typescript": "^3.8.3" |
|
}, |
|
"repository": { |
|
"type": "git", |
|
"url": "git+https://github.com/kolodny/immutability-helper.git" |
|
}, |
|
"bugs": { |
|
"url": "https://github.com/kolodny/immutability-helper/issues" |
|
}, |
|
"homepage": "https://github.com/kolodny/immutability-helper#readme" |
|
}
|
|
|