forked from eik-lib/service
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
67 lines (67 loc) · 1.81 KB
/
Copy pathpackage.json
File metadata and controls
67 lines (67 loc) · 1.81 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
{
"name": "@eik/service",
"version": "1.2.98",
"description": "Eik REST API as a standalone HTTP service",
"type": "module",
"main": "./lib/main.js",
"bin": {
"eik-server": "bin/eik-server.js",
"eik-service": "bin/eik-server.js",
"service": "bin/eik-server.js"
},
"scripts": {
"start": "node ./bin/eik-server.js | pino-pretty",
"test": "LOG_LEVEL=fatal tap ./test --no-check-coverage",
"test:snapshots:update": "LOG_LEVEL=fatal tap --snapshot",
"lint:fix": "eslint --fix .",
"lint": "eslint ."
},
"files": [
"CHANGELOG.md",
"package.json",
"lib",
"bin"
],
"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": "1.2.25",
"convict": "6.2.0",
"fastify": "3.22.0",
"fastify-compress": "3.6.0",
"fastify-cors": "6.0.2",
"fastify-jwt": "3.2.0",
"http-errors": "1.8.0",
"js-yaml": "4.1.0",
"pino": "6.13.3"
},
"devDependencies": {
"@babel/eslint-parser": "7.15.8",
"@semantic-release/changelog": "6.0.0",
"@semantic-release/commit-analyzer": "9.0.1",
"@semantic-release/git": "10.0.0",
"@semantic-release/github": "8.0.1",
"@semantic-release/npm": "8.0.0",
"@semantic-release/release-notes-generator": "10.0.2",
"eslint": "7.32.0",
"eslint-config-airbnb-base": "14.2.1",
"eslint-config-prettier": "8.3.0",
"eslint-plugin-import": "2.25.1",
"eslint-plugin-prettier": "4.0.0",
"form-data": "4.0.0",
"node-fetch": "3.0.0",
"pino-pretty": "7.0.1",
"prettier": "2.4.1",
"semantic-release": "18.0.0",
"tap": "15.0.10",
"unique-slug": "2.0.2"
}
}