forked from fe-backpackers/js-algorithm-basecamp
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.27 KB
/
package.json
File metadata and controls
56 lines (56 loc) · 1.27 KB
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
47
48
49
50
51
52
53
54
55
56
{
"name": "js-algorithm-basecamp",
"version": "0.0.4",
"repository": "https://github.com/js-for-algorithm/js-algorithm-basecamp.git",
"homepage": "https://github.com/js-for-algorithm/js-algorithm-basecamp#readme",
"description": "알고리즘 학습 베이스캠프 with JS",
"keywords": [
"JS",
"JavaScript",
"Algorithm",
"Problem Solving",
"PS"
],
"author": {
"name": "Danny Kim",
"email": "likepeppermint@gmail.com",
"url": "https://velog.io/@bigsaigon333"
},
"license": "MIT",
"private": true,
"scripts": {
"lint": "eslint --fix --cache **/*.js",
"format": "prettier --write --ignore-unknown .",
"prepare": "husky install"
},
"engines": {
"node": ">=12.18.3"
},
"devDependencies": {
"eslint": "^7.29.0",
"eslint-config-prettier": "^8.3.0",
"husky": ">=6",
"lint-staged": ">=10",
"prettier": "2.3.1"
},
"eslintConfig": {
"env": {
"browser": false,
"node": true,
"commonjs": true
},
"extends": [
"eslint:recommended",
"prettier"
],
"parserOptions": {
"ecmaVersion": 12,
"sourceType": "module"
}
},
"prettier": {},
"lint-staged": {
"*.js": "eslint --cache --fix",
"*": "prettier --write --ignore-unknown"
}
}