-
Notifications
You must be signed in to change notification settings - Fork 157
/
package.json
32 lines (32 loc) · 998 Bytes
/
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
{
"name": "gym",
"version": "1.0.0",
"description": "Code challenges para ejercitar la capacidad de analisis y resolucion de problemas",
"devDependencies": {
"@laboratoria/mdlint": "^1.2.3",
"eslint": "^7.32.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-plugin-filename-rules": "^1.2.0",
"eslint-plugin-folders": "^1.0.3",
"eslint-plugin-import": "^2.25.4",
"husky": "^7.0.4"
},
"scripts": {
"mdlint": "mdlint . --config .markdownlint.json",
"eslint": "eslint --ext .js exercises/",
"pretest": "npm run mdlint && npm run eslint",
"eslint:fix": "npm run eslint -- --fix",
"prepare": "husky install",
"predeploy": "cd gym-search && yarn build",
"deploy": "vercel"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Laboratoria/gym.git"
},
"license": "private",
"bugs": {
"url": "https://github.com/Laboratoria/gym/issues"
},
"homepage": "https://github.com/Laboratoria/gym#README.md"
}