-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
40 lines (40 loc) · 1.2 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
{
"name": "edabit-js-challenges",
"version": "1.0.0",
"description": "Solutions for JavaScript challenges on Edabit",
"private": true,
"scripts": {
"format": "prettier --write \"**/*.{js,md,json}\"",
"format:staged": "pretty-quick --staged",
"lint": "eslint \"src/**/*.js\"",
"test": "jest",
"test:watch": "jest --watch",
"custom": "sh scripts/checkDuplicateLinks.sh && sh scripts/checkFolderNames.sh && sh scripts/checkTags.sh",
"all": "npm run format:staged && npm run custom && npm run lint && npm t -- --bail",
"prepare": "husky install"
},
"author": {
"name": "Loris Bettazza",
"email": "loris.bettazza@gmail.com"
},
"repository": {
"type": "git",
"url": "https://github.com/Pustur/edabit-js-challenges.git"
},
"devDependencies": {
"@babel/core": "7.17.10",
"@babel/preset-env": "7.17.10",
"babel-jest": "28.1.0",
"eslint": "8.14.0",
"eslint-config-airbnb-base": "15.0.0",
"eslint-config-prettier": "8.5.0",
"eslint-plugin-import": "2.26.0",
"eslint-plugin-prettier": "4.0.0",
"husky": "7.0.4",
"jest": "28.1.0",
"prettier": "2.6.2",
"pretty-quick": "3.1.3",
"set-tz": "0.2.0"
},
"license": "MIT"
}