-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
55 lines (55 loc) · 1.24 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
47
48
49
50
51
52
53
54
55
{
"name": "popsicle-redirects",
"version": "1.1.1",
"publishConfig": {
"access": "public"
},
"description": "Popsicle middleware for following HTTP redirects",
"license": "MIT",
"repository": {
"type": "git",
"url": "git://github.com/serviejs/popsicle-redirects.git"
},
"author": {
"name": "Blake Embrey",
"email": "[email protected]",
"url": "http://blakeembrey.me"
},
"homepage": "https://github.com/serviejs/popsicle-redirects",
"bugs": {
"url": "https://github.com/serviejs/popsicle-redirects/issues"
},
"main": "dist/index.js",
"scripts": {
"build": "ts-scripts build",
"format": "ts-scripts format",
"lint": "ts-scripts lint",
"prepare": "ts-scripts install && npm run build",
"specs": "ts-scripts specs",
"test": "ts-scripts test"
},
"files": [
"dist/"
],
"keywords": [
"popsicle",
"redirect",
"301",
"302",
"http"
],
"peerDependencies": {
"servie": "^4.1.0"
},
"devDependencies": {
"@borderless/ts-scripts": "^0.8.0",
"@jest/globals": "^27.5.1",
"@types/node": "^17.0.21",
"servie": "^4.1.0",
"typescript": "^4.6.2"
},
"types": "dist/index.d.ts",
"ts-scripts": {
"project": "tsconfig.build.json"
}
}