-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
77 lines (77 loc) · 2.01 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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
{
"name": "chrome-tab-rotate-server",
"version": "1.3.1",
"description": "An API that provides the config/contents for the chrome-tab-rotate Chrome extension",
"main": "src/index.js",
"private": true,
"scripts": {
"start": "node src/index",
"pretest": "eslint ./src",
"test": "./node_modules/.bin/mocha --reporter spec",
"test:coverage": "./node_modules/.bin/nyc npm test",
"test:functional": "./node_modules/.bin/mocha --reporter spec ./test/functional",
"test:all": "./node_modules/.bin/run-s test:functional test:coverage",
"docker:status": "node src/healthcheck"
},
"repository": {
"type": "git",
"url": "git+https://github.com/timoa/chrome-tab-rotate-server.git"
},
"keywords": [
"chrome",
"chrome-tabs",
"chrome-extension",
"api",
"server",
"config"
],
"author": {
"name": "Damien Laureaux",
"email": "[email protected]",
"url": "https://timoa.com"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/timoa/chrome-tab-rotate-server/issues"
},
"homepage": "https://github.com/timoa/chrome-tab-rotate-server#readme",
"dependencies": {
"@fastify/helmet": "10.1.1",
"@fastify/swagger": "8.15.0",
"@hapi/boom": "9.1.4",
"fastify": "4.28.1",
"fastify-healthcheck": "4.4.0",
"http": "0.0.0",
"lodash": "4.17.21",
"uuid": "8.3.2",
"winston": "3.13.1"
},
"engines": {
"node": ">=18.0",
"npm": ">=8.6.0"
},
"os": [
"linux",
"win32",
"darwin"
],
"devDependencies": {
"acorn": "8.12.1",
"acorn-jsx": "5.3.2",
"chai": "4.5.0",
"chai-http": "4.4.0",
"eslint": "8.57.0",
"eslint-config-airbnb": "19.0.4",
"eslint-config-prettier": "4.3.0",
"eslint-plugin-import": "2.29.1",
"eslint-plugin-jsx-a11y": "6.9.0",
"eslint-plugin-react": "7.35.0",
"eslint-plugin-react-hooks": "4.6.2",
"espree": "9.6.1",
"mocha": "10.7.0",
"npm-run-all": "4.1.5",
"nyc": "15.1.0",
"request": "2.88.2",
"semantic-release": "20.1.3"
}
}