-
Notifications
You must be signed in to change notification settings - Fork 190
/
package.json
46 lines (46 loc) · 1.16 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
{
"name": "webpurple-external-courses",
"version": "1.0.0",
"description": "WebPurple JavaScript course template",
"scripts": {
"test": "jest",
"lint": "eslint --ext .js --cache ./src --fix",
"lint:ci": "eslint --ext .js --cache ./src",
"test:ci": "jest",
"prepare": "husky install"
},
"repository": {
"type": "git",
"url": "git+https://github.com/webpurple/external-courses.git"
},
"author": "Igor Fedyukin <Igor_Fedyukin@epam.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/webpurple/external-courses/issues"
},
"homepage": "https://github.com/webpurple/external-courses#readme",
"devDependencies": {
"babel-eslint": "10.1.0",
"css-validator": "0.10.0",
"eslint": "7.32.0",
"eslint-config-airbnb-base": "14.2.1",
"eslint-plugin-import": "2.24.2",
"html-validator": "5.1.17",
"husky": "7.0.0",
"jest": "24.9.0",
"lint-staged": "11.1.2"
},
"eslintIgnore": [
"**/test/**/*",
"/__tests__/**/*",
"/node_modules"
],
"jest": {
"moduleNameMapper": {
"~utils": "<rootDir>/test-utils.js"
}
},
"lint-staged": {
"*.js": "eslint --cache --fix"
}
}