-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
92 lines (92 loc) · 2.27 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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
{
"name": "artifactory-cleanup",
"description": "Artifactory Cleanup",
"version": "0.1.3",
"author": "Gabriel Kohen (https://github.com/gkohen)",
"repository": "https://github.com/JDASoftwareGroup/artifactory-cleanup",
"license": "MIT",
"bugs": {
"url": "https://github.com/JDASoftwareGroup/artifactory-cleanup/issues"
},
"files": [
"LICENSE"
],
"engines": {
"node": ">=8.0.0",
"npm": ">=5"
},
"main": "src/index.js",
"scripts": {
"test": "TZ='Antarctica/Mawson' jest",
"test:coverage": "npm run test -- --coverage ",
"test:coverage:deploy": "npm run test:coverage && codecov",
"clean": "rimraf ./dist && rimraf ./coverage",
"postinstall": "npm run build",
"build": "npm run lint",
"lint": "eslint src/**",
"precommit": "lint-staged && npm run test",
"start": "node ./dist",
"dev": "NODE_ENV=development nodemon src/index.js",
"prepublish": "npm run build",
"release": "standard-version"
},
"bin": {
"artifactory-cleanup": "./bin/artifactory-cleanup.js"
},
"keywords": [
"artifactory",
"cleanup"
],
"jestSonar": {
"reportPath": "coverage"
},
"eslintIgnoreConfig": [
"node_modules/",
"coverage/",
"dist/"
],
"prettier": {
"semi": false,
"singleQuote": true,
"trailingComma": "all",
"parser": "flow"
},
"lint-staged": {
"*.js": [
"prettier --write \"src/**/*.js\"",
"git add"
]
},
"dependencies": {
"acorn": "^6.2.1",
"axios": "0.19.0",
"axios-mock-adapter": "1.17.0",
"dotenv": "8.2.0",
"error-ex": "1.3.2",
"figlet": "1.3.0",
"filesize": "6.0.1",
"inquirer": "7.0.5",
"lodash": "4.17.15",
"moment": "2.24.0",
"winston": "3.2.1",
"yargs": "15.1.0"
},
"devDependencies": {
"chalk": "3.0.0",
"codecov": "^3.6.1",
"eslint": "5.16.0",
"eslint-config-airbnb": "^17.1.1",
"eslint-config-prettier": "^6.5.0",
"eslint-plugin-import": "^2.20.0",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-react": "^7.16.0",
"jest-cli": "25.1.0",
"jest-mock-console": "^1.0.0",
"jest-sonar-reporter": "^2.0.0",
"lint-staged": "^10.0.0",
"nodemon": "2.0.2",
"prettier": "^1.18.2",
"prettier-eslint": "^9.0.0",
"standard-version": "^7.0.0"
}
}