-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
82 lines (82 loc) · 2.22 KB
/
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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
{
"name": "tree-house",
"version": "5.2.0",
"description": "NodeJS utilities and handy helpers extending ExpressJS functionalities",
"main": "build/index.js",
"types": "build/index.d.ts",
"scripts": {
"clean": "rm -rf ./build/*",
"build": "npm run clean && tsc",
"start": "npm run build && node build/index.js",
"lint": "tslint 'src/**/*.ts'",
"test": "jest --forceExit",
"test:coverage": "jest --coverage --collectCoverageFrom=src/**/*.ts --forceExit",
"test:watch": "jest --watchAll",
"pretest": "npm run build",
"prepare": "npm run build",
"release": "node_modules/np/source/cli.js --no-cleanup",
"git:clean": "git branch --merged | egrep -v \"(^\\*|master|staging|develop)\" | xargs git branch -d",
"git:clean-remote": "git remote prune origin"
},
"precommit": [
"lint",
"build"
],
"dependencies": {
"@apidevtools/swagger-parser": "~10.0.3",
"body-parser": "~1.19.1",
"cors": "~2.8.5",
"express": "~4.17.2",
"express-rate-limit": "~5.5.1",
"express-validation": "~3.0.8",
"helmet": "~4.6.0",
"https": "~1.0.0",
"js-yaml": "~4.1.0",
"openapi-types": "~10.0.0",
"rate-limit-redis": "~2.1.0",
"swagger-ui-express": "~4.3.0"
},
"devDependencies": {
"@types/cors": "~2.8.12",
"@types/express": "~4.17.13",
"@types/express-rate-limit": "~5.1.3",
"@types/jest": "~27.0.3",
"@types/js-yaml": "~4.0.5",
"@types/redis": "~2.8.32",
"@types/supertest": "~2.0.11",
"@types/node": "~17.0.4",
"coveralls": "~3.1.1",
"jest": "~27.4.5",
"joi": "~17.5.0",
"np": "~7.6.0",
"pre-commit": "~1.2.2",
"redis-mock": "~0.56.3",
"supertest": "~6.1.6",
"ts-jest": "~27.1.2",
"tslint": "~6.1.3",
"tslint-config-airbnb": "~5.11.2",
"typescript": "~4.5.4"
},
"engines": {
"node": ">=10.0.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/icapps/tree-house.git"
},
"keywords": [
"NodeJS",
"Treehouse",
"API",
"Secure",
"Customisable"
],
"license": "ISC",
"bugs": {
"url": "https://github.com/icapps/tree-house/issues"
},
"homepage": "https://github.com/icapps/tree-house#readme",
"directories": {
"test": "tests"
}
}