-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
62 lines (62 loc) · 1.61 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
56
57
58
59
60
61
62
{
"name": "@geprog/oauth-mock-server",
"version": "0.0.0-semantic-release",
"description": "A mocked oauth server for development and e2e testing",
"homepage": "https://geprog.com",
"repository": "github:geprog/oauth-mock-server",
"license": "MIT",
"exports": {
".": {
"import": "./dist/index.mjs",
"require": "./dist/index.js"
}
},
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"files": [
"/dist"
],
"bin": {
"oauth-mock-server": "./dist/index.js"
},
"scripts": {
"build": "tsx contrib/build.ts",
"clean": "rm -rf dist/ node_modules/",
"lint": "eslint --max-warnings 0 .",
"lint:format": "prettier --check .",
"start": "pnpm tsup src/index.ts --dts --format cjs,esm --watch --onSuccess 'node dist/index.js'",
"test": "vitest run --coverage",
"test:watch": "vitest",
"typecheck": "tsc --noEmit",
"release": "semantic-release"
},
"dependencies": {
"@fastify/formbody": "7.4.0",
"fastify": "4.13.0",
"jsonwebtoken": "9.0.0",
"tsx": "3.12.3"
},
"devDependencies": {
"@codedependant/semantic-release-docker": "4.3.0",
"@geprog/eslint-config": "2.1.0",
"@geprog/semantic-release-config": "1.0.0",
"@types/jsonwebtoken": "9.0.1",
"@vitest/coverage-c8": "0.28.4",
"c8": "7.12.0",
"esbuild": "0.17.7",
"eslint": "8.34.0",
"prettier": "2.8.4",
"semantic-release": "20.1.0",
"tsup": "6.6.0",
"typescript": "4.9.5",
"vite": "4.1.1",
"vitest": "0.28.4"
},
"engines": {
"pnpm": "7"
},
"publishConfig": {
"access": "public"
}
}