Newer
Older
{
"name": "@nshmp/disagg-d3",
"version": "0.0.1",
"description": "Disaggregation plots using D3, ported from hazdev",
"main": "src/index.js",
"types": "types/index.d.ts",
"scripts": {
"pre-commit": "pretty-quick --staged && npm run tslint",
"pre-push": "npm run pre-commit",
"tslint": "tslint -c tslint.json 'types/**/*.d.ts' 'src/**/*.d.ts'",
"tslint:fix": "npm run tslint -- --fix",
"test": "echo \"Error: no test specified\" && exit 1",
"postinstall": "cd example && npm i"
},
"repository": {
"type": "git",
"url": "https://code.usgs.gov/ghsc/nshmp/disagg-d3"
},
"author": "",
"license": "ISC",
"devDependencies": {
"@types/d3": "^3.5.43",
"@types/node": "^14.6.0",
"husky": "^4.2.5",
"prettier": "^2.1.0",
"pretty-quick": "^3.0.0",
"tslint": "^6.1.3",
"tslint-etc": "^1.13.6",
"typescript": "^4.0.2"
},
"dependencies": {
"@nshmp/nshmp-utils": "^1.2.5",
"d3": "^3.5.17"
},
"husky": {
"hooks": {
"pre-commit": "npm run pre-commit",
"pre-push": "npm run pre-push"
}
}
}