-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 1.19 KB
/
package.json
File metadata and controls
38 lines (38 loc) · 1.19 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
{
"name": "@digipolis/probes",
"version": "1.0.0",
"description": "A ready to use livenessprobe and readinessprobe for your application.",
"main": "dist/index.js",
"module": "dist/index.es.js",
"types": "index.d.ts",
"scripts": {
"build": "npx rollup -c --bundleConfigAsCjs",
"prepublish": "npm run lint && npm run build",
"lint": "eslint . --ext .js",
"test": "cross-env NODE_ENV=test nyc --reporter=lcov --reporter=text ./node_modules/.bin/mocha --require @babel/register"
},
"author": "",
"license": "ISC",
"devDependencies": {
"@babel/core": "~7.20.12",
"@babel/plugin-transform-runtime": "~7.19.6",
"@babel/preset-env": "~7.20.2",
"@babel/register": "~7.18.9",
"@babel/runtime-corejs2": "~7.20.13",
"@rollup/plugin-babel": "~6.0.3",
"@rollup/plugin-commonjs": "~24.0.1",
"@rollup/plugin-node-resolve": "~15.0.1",
"babel-plugin-istanbul": "~6.1.1",
"cross-env": "~7.0.3",
"eslint": "~8.32.0",
"eslint-config-airbnb-base": "~15.0.0",
"eslint-plugin-import": "~2.27.5",
"mocha": "~10.2.0",
"nyc": "~15.1.0",
"rollup": "~3.11.0",
"supertest": "~6.3.3"
},
"dependencies": {
"express": "~4.18.2"
}
}