-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (46 loc) · 1.03 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
{
"name": "@marvinav/typed-express",
"version": "0.9.1",
"description": "Simple expressjs routes generator based on strong types endpoint description",
"main": "public/index.js",
"scripts": {
"build": "tsc",
"build:check": "tsc --noEmit"
},
"repository": {
"type": "git",
"url": "git+https://github.com/marvinav/typed-endpoint.git"
},
"keywords": [
"expressjs",
"typescript",
"browser",
"nodejs",
"fetch"
],
"files": [
"public",
"LICENSE",
"README.md"
],
"types": "public/index.d.ts",
"author": "marvinav",
"license": "MIT",
"bugs": {
"url": "https://github.com/marvinav/typed-endpoint/issues"
},
"homepage": "https://github.com/marvinav/typed-endpoint#readme",
"devDependencies": {
"@types/express": "^4.17.13",
"@types/mocha": "^9.0.0",
"@types/node-fetch": "^2.5.12",
"assert": "^2.0.0",
"express": "^4.17.1",
"mocha": "^9.0.3",
"ts-node": "^10.1.0",
"typescript": "^4.3.5"
},
"publishConfig": {
"access": "public"
}
}