forked from unjs-archive/redirect-ssl
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
37 lines (37 loc) · 1.02 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
{
"name": "redirect-ssl",
"version": "2.0.0",
"description": "Connect/Express middleware to enforce https",
"repository": "nuxt-contrib/redirect-ssl",
"license": "MIT",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"build": "bili src/index.ts --minimal",
"dev": "ts-node --dir test server.ts",
"lint": "eslint --ext ts .",
"typecheck": "tsc --noEmit -p . && tsc --noEmit -p ./test",
"release": "yarn build && standard-version && git push --follow-tags && npm publish",
"test": "yarn lint && yarn typecheck"
},
"dependencies": {
"is-https": "^2.0.0"
},
"devDependencies": {
"@nuxtjs/eslint-config-typescript": "latest",
"@types/connect": "latest",
"@types/node": "latest",
"@types/pem": "latest",
"bili": "latest",
"connect": "latest",
"eslint": "latest",
"pem": "latest",
"rollup-plugin-typescript2": "latest",
"standard-version": "latest",
"ts-node": "latest",
"typescript": "latest"
}
}