-
Notifications
You must be signed in to change notification settings - Fork 13
/
package.json
95 lines (95 loc) · 2.18 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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
{
"name": "move-effective-tdd",
"version": "1.0.0",
"description": "TDD resources(articles/katas/etc).",
"main": "README.md",
"scripts": {
"lint:eslint": "eslint --fix",
"lint:prettier": "prettier --write --ignore-unknown",
"test": "jest",
"test:watch": "jest --watch",
"test:ci": "jest --coverage --verbose"
},
"devDependencies": {
"@babel/core": "^7.7.5",
"@babel/plugin-proposal-class-properties": "^7.7.4",
"@babel/plugin-proposal-decorators": "^7.7.4",
"@babel/preset-env": "^7.7.6",
"@types/jest": "^24.0.23",
"@types/node": "^12.12.16",
"@typescript-eslint/eslint-plugin": "^5.40.1",
"@typescript-eslint/parser": "^5.40.1",
"eslint": "^8.25.0",
"eslint-config-javascript-the-good-parts": "^1.7.1",
"eslint-config-prettier": "^8.5.0",
"husky": "^3.1.0",
"jest": "^24.9.0",
"lint-staged": "^9.5.0",
"prettier": "^2.7.1",
"ts-jest": "^29.0.3",
"typescript": "^4.8.4"
},
"jest": {
"testMatch": [
"<rootDir>/src/**/*.(test|spec).(js|ts)"
],
"transform": {
".js": "babel-jest",
".ts$": "ts-jest"
},
"verbose": false,
"collectCoverage": false
},
"babel": {
"presets": [
"@babel/preset-env"
],
"plugins": [
[
"@babel/plugin-proposal-decorators",
{
"legacy": true
}
],
[
"@babel/plugin-proposal-class-properties",
{
"loose": true
}
]
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"src/**/*.(ts)": [
"npm run lint:eslint",
"npm run lint:prettier",
"git add"
],
"src/**/*.(json,yml)": [
"npm run lint:prettier",
"git add"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/EthanLin-TWer/move-effective-TDD.git"
},
"keywords": [
"tdd",
"tasking",
"test-driven-development",
"deliberate-practice",
"kata"
],
"author": "Linesh",
"license": "MIT",
"bugs": {
"url": "https://github.com/EthanLin-TWer/move-effective-TDD/issues"
},
"homepage": "https://github.com/EthanLin-TWer/move-effective-TDD#readme"
}