Skip to content

Commit 35949cf

Browse files
feat: add packages
1 parent eeb75ed commit 35949cf

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

package.json

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,9 @@
2525
"devDependencies": {
2626
"@types/jest": "^24.0.18",
2727
"@types/node": "^12.7.5",
28+
"@typescript-eslint/eslint-plugin": "^2.2.0",
29+
"@typescript-eslint/parser": "^2.2.0",
30+
"eslint": "^6.4.0",
2831
"jest": "^24.9.0",
2932
"jest-circus": "^24.9.0",
3033
"nock": "^11.3.4",
@@ -36,7 +39,8 @@
3639
},
3740
"scripts": {
3841
"build": "tsc",
39-
"test": "jest",
42+
"test": "yarn lint && yarn cover",
43+
"lint": "eslint src/**/**/*.ts && eslint __tests__/**/**/*.ts",
4044
"cover": "jest --coverage"
4145
}
4246
}

0 commit comments

Comments
 (0)