-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
47 lines (47 loc) · 1.11 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
{
"name": "@carnesen/redirector",
"version": "0.3.0",
"description": "A Node.js web server that redirects e.g. example.com to www.example.com",
"main": "src/index.js",
"scripts": {
"build": "rimraf lib/ && tsc",
"lint": "eslint src",
"fix": "eslint src --fix",
"start": "node lib/index.js",
"test": "npm run lint && npm run unit-test && npm run build && npm pack",
"unit-test": "jest src"
},
"dependencies": {
"http-status-codes": "^2.0.0",
"koa": "^2.13.0"
},
"devDependencies": {
"@carnesen/dev": "0.1.1",
"@carnesen/tsconfig": "0.4.1",
"@types/jest": "27.4.1",
"@types/koa": "2.13.4",
"eslint": "7.32.0",
"eslint-config-carnesen": "7.0.0",
"jest": "27.5.1",
"rimraf": "3.0.2",
"supertest": "6.2.2",
"ts-jest": "27.1.3",
"typescript": "4.5.5"
},
"files": [
"src",
"!src/**/__tests__",
"lib",
"!lib/**/__tests__"
],
"engines": {
"node": ">=14.0.0"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/carnesen/redirector/issues"
},
"repository": "github:carnesen/redirector",
"homepage": "https://github.com/carnesen/redirector#readme",
"author": "Chris Arnesen"
}