Skip to content

Commit

Permalink
added missing husky install script
Browse files Browse the repository at this point in the history
  • Loading branch information
Enubia committed Jun 11, 2021
1 parent 1dde62d commit da240ce
Showing 1 changed file with 10 additions and 9 deletions.
19 changes: 10 additions & 9 deletions package.json
Expand Up @@ -5,19 +5,20 @@
"main": "lib/index.js",
"types": "lib/index.d.ts",
"scripts": {
"build": "tsc",
"build-watch": "tsc -w",
"clean": "rimraf lib",
"test": "jest --testPathIgnorePatterns test/",
"test-watch": "jest --testPathIgnorePatterns test/ --watch",
"test-integration": "TZ=UTC jest --runInBand",
"test-integration-watch": "TZ=UTC jest --runInBand --watch",
"coverage": "cross-env NODE_ENV=test TZ=UTC jest --runInBand --coverage",
"coverage-ci": "npm run coverage && cat ./coverage/lcov.info | codecov",
"lint": "tsc --noEmit && eslint '*/**/*.{js,ts,tsx}'",
"lint-fix": "tsc --noEmit && eslint '*/**/*.{js,ts,tsx}' --fix",
"lint-staged": "lint-staged",
"coverage": "cross-env NODE_ENV=test TZ=UTC jest --runInBand --coverage",
"coverage-ci": "npm run coverage && cat ./coverage/lcov.info | codecov",
"build": "tsc",
"build-watch": "tsc -w",
"release": "np --no-publish"
"prepare": "husky install",
"release": "np --no-publish",
"test": "jest --testPathIgnorePatterns test/",
"test-integration": "TZ=UTC jest --runInBand",
"test-integration-watch": "TZ=UTC jest --runInBand --watch",
"test-watch": "jest --testPathIgnorePatterns test/ --watch"
},
"files": [
"lib",
Expand Down

0 comments on commit da240ce

Please sign in to comment.