generated from fcostarodrigo/template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
87 lines (87 loc) · 1.92 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
{
"name": "yolo-up",
"version": "1.3.0",
"description": "Update dependencies of a npm package.",
"main": "src/yoloUp.js",
"scripts": {
"test": "jest unit int --coverage",
"pretest": "eslint src",
"format": "prettier --write ."
},
"bin": "src/cli.js",
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "git+https://github.com/fcostarodrigo/yolo-up.git"
},
"keywords": [
"update",
"dependencies",
"npm",
"package"
],
"author": "Rodrigo Fernandes da Costa",
"license": "MIT",
"bugs": {
"url": "https://github.com/fcostarodrigo/yolo-up/issues"
},
"homepage": "https://github.com/fcostarodrigo/yolo-up#readme",
"dependencies": {
"chalk": "^4.1.0",
"ora": "^5.4.0",
"semver": "^7.3.5",
"yargs": "^16.2.0"
},
"devDependencies": {
"@types/jest": "^26.0.22",
"@types/node": "^14.14.41",
"eslint": "^7.24.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-config-prettier": "^8.2.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jest": "^24.3.5",
"eslint-plugin-prettier": "^3.4.0",
"eslint-plugin-tsc": "^2.0.0",
"husky": "^6.0.0",
"jest": "^26.6.3",
"lint-staged": "^10.5.4",
"prettier": "^2.2.1",
"typescript": "^4.2.4"
},
"eslintConfig": {
"extends": [
"airbnb-base",
"plugin:jest/recommended",
"prettier"
],
"plugins": [
"prettier",
"jest",
"tsc"
],
"rules": {
"no-continue": "off",
"no-await-in-loop": "off",
"no-restricted-syntax": "off",
"prettier/prettier": "error",
"no-param-reassign": "off",
"tsc/config": [
"error",
{
"configFile": "tsconfig.json"
}
]
}
},
"lint-staged": {
"*.{yaml,yml,json,md}": [
"prettier --write"
],
"*.{js,jsx,mjs}": [
"eslint src --fix",
"jest --findRelatedTests"
]
}
}