-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
48 lines (48 loc) · 1.68 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
{
"name": "@cloudelements/doctor-core",
"version": "1.0.16",
"description": "Core functionality of Doctor - The Cloud Elements Asset Management Tool",
"main": "index.js",
"scripts": {
"test:unit": "npm run prettify && npx eslint src --fix && jest --silent",
"test:unit:coverage": "npm run prettify && npx eslint src --fix && jest --coverage --silent && npm run jest:threshold:bumper",
"jest:threshold:bumper": "jest-coverage-thresholds-bumper --coverage-summary-path=\"./coverage/coverage-summary.json\"",
"prettify": "./node_modules/.bin/prettier --write --print-width=120 --tab-width=2 --single-quote=true --trailing-comma=all --bracket-spacing=false src/**/**/* src/**/* test/**/*"
},
"repository": {
"type": "git",
"url": "https://github.com/cloud-elements/doctor-core.git"
},
"author": "Mukund",
"license": "ISC",
"bugs": {
"url": "https://github.com/cloud-elements/doctor-core/issues"
},
"engines": {
"node": ">=12.18.3",
"npm": ">=6.14.6"
},
"homepage": "https://github.com/cloud-elements/doctor-core#readme",
"dependencies": {
"cli-spinner": "^0.2.10",
"console.table": "^0.10.0",
"deep-sort-object": "^1.0.2",
"fs-extra": "9.1.0",
"ramda": "^0.25.0",
"replaceall": "^0.1.6",
"request": "^2.88.0",
"request-promise": "^4.2.4"
},
"devDependencies": {
"eslint": "^6.8.0",
"eslint-config-airbnb-base": "^14.1.0",
"eslint-config-node": "^4.0.0",
"eslint-config-prettier": "^6.8.0",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-node": "^10.0.0",
"eslint-plugin-prettier": "^3.1.2",
"jest": "^26.6.3",
"jest-coverage-thresholds-bumper": "0.0.3",
"prettier": "^1.19.1"
}
}