-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
123 lines (123 loc) · 3.47 KB
/
Copy pathpackage.json
File metadata and controls
123 lines (123 loc) · 3.47 KB
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
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
{
"name": "bind-rest",
"version": "1.4.6",
"description": "Framework for creating REST API with decorators and dependency injection",
"private": false,
"license": "MIT",
"keywords": [
"Framework",
"IOC",
"Dependency Injection",
"Typescript",
"Rest",
"Decorators",
"Annotations",
"Swagger"
],
"scripts": {
"prepublishOnly": "npm test && npm run lint",
"preversion": "npm run lint",
"version": "npm run format && git add -A src",
"postversion": "git push && git push --tags",
"prebuild": "node ./node-build-os.js clean",
"build": "tsc --pretty",
"pretest": "npm run build",
"test": "cross-env NODE_ENV=TEST NODE_ENC=TEST jest",
"test:watch": "cross-env NODE_ENV=TEST NODE_ENC=TEST jest --watch",
"test:coverage": "cross-env NODE_ENV=TEST NODE_ENC=TEST jest --coverage",
"prettier": "prettier --config .prettierrc.js --write ./src/**/*.ts",
"format": "eslint src --ext .ts --fix",
"lint": "eslint src --ext .ts"
},
"main": "./build/index.js",
"engines": {
"node": ">=12.14.0"
},
"typings": "build/types/index.d.ts",
"files": [
"build/",
"README.md",
"LICENSE"
],
"repository": {
"type": "git",
"url": "https://github.com/snytkine/bind-rest.git"
},
"author": {
"name": "Dmitri Snytkine",
"email": "d.snytkine@gmail.com"
},
"dependencies": {
"JSONStream": "1.3.0",
"acorn": "^7.1.1",
"bind-di": "^1.1.2",
"body-parser": "^1.19.0",
"bytes": "2.5.0",
"charset": "1.0.0",
"cookie": "^0.4.1",
"cookies": "0.6.2",
"debug": "^4.1.1",
"decompress-response": "^6.0.0",
"holiday-router": "^1.1.5",
"http-errors": "^1.7.3",
"http-method-enum": "^1.0.0",
"http-status-enum": "1.0.2",
"inflate": "0.0.7",
"inflation": "2.0.0",
"is-stream": "^2.0.0",
"jmespath": "^0.15.0",
"jsonpath": "^1.0.2",
"jsonschema": "1.1.1",
"lowercase-keys": "^2.0.0",
"raw-body": "^2.2.0",
"reflect-metadata": "^0.1.13",
"require-from-string": "^2.0.2",
"string-to-stream": "^3.0.1",
"tunnel": "0.0.6",
"uuid": "^3.1.0",
"validator": "6.3.0",
"winston": "^2.4.0"
},
"devDependencies": {
"@types/acorn": "^4.0.5",
"@types/bytes": "^2.4.33",
"@types/content-type": "^1.0.33",
"@types/cookie": "^0.1.29",
"@types/cookies": "^0.6.0",
"@types/debug": "^4.1.5",
"@types/decompress-response": "^3.3.1",
"@types/http-errors": "^1.6.3",
"@types/inflation": "^2.0.0",
"@types/jest": "^25.2.1",
"@types/jmespath": "^0.15.0",
"@types/jsonpath": "^0.2.0",
"@types/jsonschema": "0.0.5",
"@types/node": "^13.7.7",
"@types/raw-body": "^2.3.0",
"@types/reflect-metadata": "^0.1.0",
"@types/require-from-string": "^1.2.0",
"@types/serve-static": "^1.7.31",
"@types/through": "0.0.28",
"@types/uuid": "^3.4.2",
"@types/validator": "^5.7.35",
"@typescript-eslint/eslint-plugin": "^4.13.0",
"@typescript-eslint/parser": "^4.13.0",
"cross-env": "^7.0.2",
"eslint": "^6.8.0",
"eslint-config-airbnb": "^18.1.0",
"eslint-config-airbnb-typescript": "^7.2.0",
"eslint-config-prettier": "^6.10.1",
"eslint-plugin-import": "^2.20.2",
"eslint-plugin-prettier": "^3.1.2",
"jest": "^25.2.7",
"pre-commit": "^1.2.2",
"prettier": "^2.0.2",
"ts-jest": "^25.3.1",
"typescript": "^4.1.3"
},
"optionalDependencies": {
"content-type": "1.0.2",
"deepcopy": "^0.6.3",
"serve-static": "^1.11.2"
}
}