This repository was archived by the owner on Feb 21, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.39 KB
/
package.json
File metadata and controls
57 lines (57 loc) · 1.39 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
57
{
"name": "@hardfork/coding-challenges",
"version": "0.0.1",
"description": "A collection of challenges used at Hardfork.",
"private": true,
"scripts": {
"test": "jest",
"lint": "tsc --noEmit && eslint 'src/**/*.ts'"
},
"repository": {
"type": "git",
"url": "git+https://github.com/hardforkio/coding-challenges.git"
},
"contributors": [
{
"name": "Kilian Wimmer",
"email": "kilocheat@gmail.com"
},
{
"name": "Levin Keller",
"email": "post@levinkeller.de"
}
],
"author": {
"name": "Hardfork GmbH",
"email": "keller@hardfork.io",
"url": "https://hardfork.io/"
},
"license": "UNLICENSED",
"bugs": {
"url": "https://github.com/hardforkio/coding-challenges/issues"
},
"homepage": "https://github.com/hardforkio/coding-challenges#readme",
"devDependencies": {
"@types/jest": "^25.2.1",
"@types/ramda": "^0.25.42",
"@typescript-eslint/eslint-plugin": "^2.5.0",
"@typescript-eslint/parser": "^2.5.0",
"eslint": "^6.6.0",
"eslint-config-prettier": "^6.5.0",
"eslint-plugin-prettier": "^3.1.1",
"jest": "^25.4.0",
"onchange": "^5.1.0",
"prettier": "^1.14.3",
"ts-jest": "^25.4.0",
"ts-node": "^7.0.1",
"typescript": "^3.1.6",
"yarn": "^1.12.3"
},
"dependencies": {
"ramda": "^0.26.0"
},
"jest": {
"preset": "ts-jest",
"testEnvironment": "node"
}
}