-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 1.37 KB
/
package.json
File metadata and controls
34 lines (34 loc) · 1.37 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
{
"name": "hackerrank",
"version": "1.0.0",
"description": "## 10 Days of Javascript | Day | Challenge | Solution | | --- |---| ---| | 0 |[Hello, World!](https://www.hackerrank.com/challenges/js10-hello-world/problem) | [Solution](./10DaysOfJavascript/Day0/hello-world.js) | | 0 |[Data Types](https://www.hackerrank.com/challenges/js10-data-types/problem) | [Solution](./10DaysOfJavascript/Day0/data-types.js) | | 1 |[Arithmetic Operators](https://www.hackerrank.com/challenges/js10-arithmetic-operators/problem) | [Solution](./10DaysOfJavascript/Day1/arithmetic-operators) | | 1 |[Functions](https://www.hackerrank.com/challenges/js10-function/problem) | [Solution](./10DaysOfJavascript/Day1/functions.js) |",
"main": "index.js",
"scripts": {
"create-readme": "node ./.tool/src/index.js",
"lint": "eslint ./**/*.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/yeonjuan/hackerrank-js.git"
},
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/yeonjuan/hackerrank-js/issues"
},
"homepage": "https://github.com/yeonjuan/hackerrank-js#readme",
"devDependencies": {
"eslint": "^6.0.1",
"eslint-config-tui": "^2.2.0",
"handlebars": "^4.1.2",
"comment-parser": "^0.6.1"
},
"dependencies": {
"husky": "^3.0.1"
},
"husky": {
"hooks": {
"pre-commit": "npm run lint"
}
}
}