-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 1.5 KB
/
package.json
File metadata and controls
63 lines (63 loc) · 1.5 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
58
59
60
61
62
63
{
"name": "typescript-kata",
"version": "0.0.0",
"description": "kata to train with typescript",
"scripts": {
"test": "jest",
"test:watch": "jest --watch",
"test:cov": "jest --coverage",
"format": "prettier --write '**/*.ts'",
"build": "tsc",
"generate-doc": "typedoc",
"prepare": "husky install",
"release": "standard-version",
"serve-report": "live-server --port=8080 --entry-file=./public/index.html"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Webeleon/typecript-kata"
},
"bugs": {
"url": "https://github.com/Webeleon/typecript-kata/issues"
},
"contributors": [
{
"name": "Julien Prugne",
"email": "julien@webeleon.dev"
}
],
"keywords": [
"kata",
"webeleon",
"typescript",
"koans",
"learning"
],
"author": "Julien Prugne<juliene@webeleon.dev>",
"license": "MIT",
"devDependencies": {
"@commitlint/cli": "13.2.1",
"@commitlint/config-conventional": "13.2.0",
"@types/jest": "27.5.2",
"@types/sinon": "10.0.13",
"husky": "7.0.4",
"jest": "27.5.1",
"lint-staged": "13.0.3",
"prettier": "2.7.1",
"sinon": "14.0.2",
"standard-version": "9.5.0",
"ts-jest": "27.1.5",
"ts-node": "10.9.1",
"typedoc": "0.23.21",
"typescript": "4.8.4"
},
"dependencies": {
"jest-html-reporter": "^3.7.0",
"live-server": "^1.2.2",
"node-fetch": "3.3.0",
"query-string": "7.1.1"
},
"lint-staged": {
"*.{ts}": "prettier --write"
}
}