-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
74 lines (74 loc) · 2.12 KB
/
Copy pathpackage.json
File metadata and controls
74 lines (74 loc) · 2.12 KB
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
63
64
65
66
67
68
69
70
71
72
73
74
{
"name": "@eik/service",
"version": "5.6.2",
"description": "Eik REST API as a standalone HTTP service",
"type": "module",
"main": "./lib/main.js",
"types": "./types/main.d.ts",
"bin": {
"eik-server": "bin/eik-server.js",
"eik-service": "bin/eik-server.js",
"service": "bin/eik-server.js"
},
"engines": {
"node": ">=20.5.0"
},
"scripts": {
"clean": "node -e \"['.tap', 'node_modules', 'types'].forEach(d => require('fs').rmSync(d, {recursive: true, force: true}))\"",
"lint": "eslint .",
"lint:fix": "eslint --fix .",
"start": "node ./bin/eik-server.js | pino-pretty",
"test": "cross-env LOG_LEVEL=fatal node --test 'test/**/*.test.js'",
"test:ci": "cross-env LOG_LEVEL=trace node --test 'test/**/*.test.js'",
"test:snapshots": "cross-env LOG_LEVEL=fatal node --test --test-update-snapshots 'test/**/*.test.js'",
"types": "run-s types:module types:test",
"types:module": "tsc",
"types:test": "tsc --project tsconfig.test.json"
},
"files": [
"CHANGELOG.md",
"package.json",
"lib",
"bin",
"types"
],
"repository": {
"type": "git",
"url": "git@github.com:eik-lib/service.git"
},
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/eik-lib/service/issues"
},
"homepage": "https://github.com/eik-lib/service#readme",
"dependencies": {
"@eik/core": "2.4.0",
"@eik/sink": "1.4.0",
"@eik/sink-file-system": "2.4.0",
"@eik/sink-memory": "2.4.0",
"@fastify/compress": "9.2.0",
"@fastify/cors": "11.3.0",
"@fastify/jwt": "10.2.2",
"convict": "6.2.5",
"fastify": "5.12.3",
"http-errors": "2.0.1",
"pino": "10.3.1",
"yaml": "2.9.0"
},
"devDependencies": {
"@eik/eslint-config": "2.0.15",
"@eik/prettier-config": "1.0.2",
"@eik/semantic-release-config": "1.0.19",
"@eik/typescript-config": "1.0.2",
"@types/readable-stream": "4.0.24",
"cross-env": "10.1.0",
"eslint": "10.4.1",
"mrmime": "2.0.1",
"npm-run-all2": "9.0.2",
"pino-pretty": "13.1.3",
"prettier": "3.8.4",
"semantic-release": "25.0.5",
"typescript": "6.0.3"
}
}