-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 799 Bytes
/
package.json
File metadata and controls
37 lines (37 loc) · 799 Bytes
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
{
"name": "@pyncz/refuel",
"description": "Don't let your account run out of fuel",
"version": "0.0.0-development",
"license": "MIT",
"author": "Pavel Yankovski <https://github.com/pyncz>",
"scripts": {
"lint": "eslint .",
"lintfix": "nr lint --fix"
},
"devDependencies": {
"@antfu/eslint-config": "^0.26.2",
"@antfu/ni": "^0.17.2",
"eslint": "^8.23.0",
"lint-staged": ">=10",
"simple-git": "^3.17.0",
"simple-git-hooks": "^2.8.1",
"typescript": "^5.0.3"
},
"repository": {
"type": "git",
"url": "https://github.com/pyncz/refuel"
},
"release": {
"branches": [
"main"
]
},
"simple-git-hooks": {
"pre-commit": "nr lint-staged"
},
"lint-staged": {
"*.{js,ts,tsx,vue}": [
"eslint --fix"
]
}
}