oneuptime/helm-chart/package.json

31 lines
928 B
JSON
Raw Normal View History

2020-03-22 11:39:12 +00:00
{
2020-12-10 07:10:18 +00:00
"name": "helm-chart",
"version": "3.0.0",
"description": "Helm Chart Server for Fyipe",
"main": "server.js",
"scripts": {
2021-03-06 12:46:43 +00:00
"preinstall": "npx npm-force-resolutions || echo 'No package-lock.json file. Skipping force resolutions'",
2020-12-10 07:10:18 +00:00
"start": "node server.js",
"dev": "nodemon server.js",
"test": "cross-env NODE_ENV=development mocha --exit test/index.js",
2020-12-10 07:10:18 +00:00
"audit": "npm audit --audit-level=low",
"dep-check": "depcheck ./ --skip-missing=true --ignores='ejs'"
},
"author": "",
"license": "ISC",
"dependencies": {
"chai": "^4.2.0",
"chai-http": "^4.3.0",
"cors": "^2.8.5",
"cross-env": "^7.0.3",
"express": "^4.17.1",
"mocha": "^8.2.1"
2021-03-06 12:46:43 +00:00
},
2021-03-06 13:24:28 +00:00
"resolutions": {},
2020-12-10 07:10:18 +00:00
"devDependencies": {
"depcheck": "^0.9.2",
2021-03-06 12:46:43 +00:00
"nodemon": "^2.0.6",
"npm-force-resolutions": "0.0.3"
2020-12-10 07:10:18 +00:00
}
2020-03-22 11:39:12 +00:00
}