forked from aofleejay/express-response-formatter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
38 lines (38 loc) · 1013 Bytes
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
{
"name": "express-response-formatter",
"version": "2.0.0",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"scripts": {
"build": "tsc",
"format": "prettier --write src/**/*.ts",
"test": "jest",
"coveralls": "jest --coverage && cat ./coverage/lcov.info | coveralls"
},
"repository": "https://github.com/aofleejay/express-response-formatter.git",
"author": "aofleejay",
"license": "MIT",
"devDependencies": {
"@types/express": "^4.17.3",
"@types/jest": "^25.1.3",
"@types/supertest": "^2.0.8",
"@typescript-eslint/eslint-plugin": "^2.22.0",
"@typescript-eslint/parser": "^2.22.0",
"coveralls": "^3.1.0",
"eslint": "^6.8.0",
"express": "^4.17.1",
"husky": "^4.2.3",
"jest": "^25.1.0",
"nodemon": "^2.0.2",
"prettier": "^1.19.1",
"pretty-quick": "^2.0.1",
"supertest": "^4.0.2",
"ts-jest": "^25.2.1",
"typescript": "^3.8.3"
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged"
}
}
}