Skip to content
Snippets Groups Projects
package.json 1.14 KiB
Newer Older
Clayton, Brandon Scott's avatar
Clayton, Brandon Scott committed
{
  "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": {
Clayton, Brandon Scott's avatar
Clayton, Brandon Scott committed
    "npm-cli-login": "npm-cli-login",
Clayton, Brandon Scott's avatar
Clayton, Brandon Scott committed
    "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",
Clayton, Brandon Scott's avatar
Clayton, Brandon Scott committed
    "test": "echo \"Error: no test specified\" && exit 1",
    "postinstall": "cd example && npm i"
Clayton, Brandon Scott's avatar
Clayton, Brandon Scott committed
  },
  "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",
Clayton, Brandon Scott's avatar
Clayton, Brandon Scott committed
    "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"
    }
  }
}