-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 891 Bytes
/
package.json
File metadata and controls
33 lines (33 loc) · 891 Bytes
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
{
"name": "@secretary/now-node-framework",
"license": "MIT",
"description": "NodeJS Framework for Zeit Now",
"author": "Aaron Scherer <aequasi@gmail.com>",
"version": "0.2.6",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"publishConfig": {
"access": "public"
},
"bin": {
"buildNowJson": "./bin/buildNowJson"
},
"scripts": {
"build": "tsc -p tsconfig.json",
"prepublishOnly": "rm -r dist ; npm run build"
},
"dependencies": {
"inversify": "^5.0.1",
"micro": "^9.3.3",
"micro-cors": "^0.1.1",
"micro-query": "^0.3.0",
"micro-redirect": "^1.0.0",
"reflect-metadata": "^0.1.13"
},
"devDependencies": {
"@types/micro": "^7.3.3",
"@types/micro-cors": "^0.1.0",
"tslint": "^5.16.0",
"typescript": "^3.4.5"
}
}