-
Notifications
You must be signed in to change notification settings - Fork 259
/
package.json
42 lines (42 loc) · 1.29 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
{
"name": "edizon_configsandscripts",
"version": "1.0.0",
"description": "This is the official repository for EdiZon Editor Config and Editor Script files. They can be used by the [EdiZon save Editor\r ](https://github.com/thomasnet-mc/EdiZon) to modify every Nintendo Switch save file.\r If you want yours to be added, please send them to @WerWolv98 or @thomasnet-mc or create a Pull Request.",
"main": "index.js",
"dependencies": {},
"devDependencies": {
"ajv-cli": "^3.0.0",
"husky": "^1.1.0",
"lint-staged": "^7.3.0",
"prettier": "^1.14.0"
},
"scripts": {
"formatter": "prettier --write -l \"./Configs/*.json\"",
"validator": "ajv -s ./Tools/Schemas/config.json -d \"./Configs/*.json\" --unknown-formats=ignore",
"test": "npm run validator"
},
"prettier": {
"useTabs": true
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"./Configs/*.json": [
"prettier --write",
"git add"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/WerWolv98/EdiZon_ConfigsAndScripts.git"
},
"author": "WerWolv98",
"license": "MIT",
"bugs": {
"url": "https://github.com/WerWolv98/EdiZon_ConfigsAndScripts/issues"
},
"homepage": "https://github.com/WerWolv98/EdiZon_ConfigsAndScripts#readme"
}