-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
36 lines (36 loc) · 949 Bytes
/
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
{
"name": "@expo/koa-apex-domain",
"version": "1.0.1",
"description": "Koa middleware that redirects requests to `www.${domain}` to `${domain}`",
"main": "build/apexDomain.js",
"scripts": {
"prepare": "rm -rf build && tsc",
"prettier": "prettier --write 'src/**/*.ts'",
"test": "jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/expo/koa-apex-domain.git"
},
"keywords": [
"koa"
],
"author": "Expo",
"license": "MIT",
"bugs": {
"url": "https://github.com/expo/koa-apex-domain/issues"
},
"homepage": "https://github.com/expo/koa-apex-domain#readme",
"devDependencies": {
"@babel/core": "^7.9.0",
"@babel/preset-env": "^7.9.5",
"@babel/preset-typescript": "^7.9.0",
"@types/jest": "^27.0.2",
"@types/koa": "^2.11.3",
"@types/node": "^16.9.6",
"jest": "^27.2.1",
"koa": "^2.11.0",
"prettier": "^2.0.5",
"typescript": "^4.4.3"
}
}