-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (45 loc) · 1.04 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
{
"name": "project-euler",
"version": "1.0.0",
"description": "https://projecteuler.net/about",
"main": "Multiples of 3 and 5.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged"
}
},
"repository": {
"type": "git",
"url": "git+https://github.com/HaQadosch/Project-Euler.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/HaQadosch/Project-Euler/issues"
},
"homepage": "https://github.com/HaQadosch/Project-Euler#readme",
"standard": {
"parser": "@typescript-eslint/parser",
"plugins": [
"typescript"
]
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^1.7.0",
"@typescript-eslint/parser": "^1.7.0",
"eslint": "^5.16.0",
"husky": "^2.2.0",
"immer": "^3.1.1",
"prettier": "^1.17.0",
"pretty-quick": "^1.10.0",
"typescript": "^3.4.5"
},
"dependencies": {
"@types/node": "^12.0.0",
"npm": "^6.9.0"
}
}