-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
87 lines (87 loc) · 2.18 KB
/
package.json
File metadata and controls
87 lines (87 loc) · 2.18 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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
{
"name": "data-structures",
"version": "1.0.0",
"engines": {
"node": ">=18.9.0",
"npm": ">=8.19.1"
},
"description": "Simple data structures to demonstrate TDD concepts",
"main": "index.js",
"types": "dist/index.d.ts",
"scripts": {
"test": "jest --verbose",
"test:watch": "jest --watchAll --verbose",
"test:coverage": "jest --coverage",
"build": "tsc",
"lint": "eslint --ext .ts src",
"complexity-report": "npm run build && npx cr -f plain -o ./report.txt ./dist/Philosopher.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/growsagely/test-driven-development-exercises-intro.git"
},
"keywords": [
"TDD",
"datastructures",
"typescript"
],
"author": "Dale Alleshouse",
"license": "ISC",
"bugs": {
"url": "https://github.com/growsagely/test-driven-development-exercises-intro/issues"
},
"homepage": "https://github.com/growsagely/test-driven-development-exercises-intro#readme",
"devDependencies": {
"@types/jest": "^29.2.3",
"@typescript-eslint/eslint-plugin": "^5.44.0",
"@typescript-eslint/parser": "^5.44.0",
"complexity-report": "^2.0.0-alpha",
"eslint": "^8.28.0",
"eslint-config-prettier": "^8.5.0",
"eslint-config-standard": "^17.0.0",
"eslint-config-standard-with-typescript": "^23.0.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-promise": "^6.1.1",
"jest": "^29.3.1",
"prettier": "^2.8.0",
"ts-jest": "^29.0.3",
"typescript": "^4.9.3"
},
"jest": {
"roots": [
"<rootDir>/src"
],
"preset": "ts-jest",
"testEnvironment": "node",
"testPathIgnorePatterns": [
"__test__/acceptance"
],
"moduleFileExtensions": [
"ts",
"js"
],
"transform": {
"^.+\\.ts?$": [
"ts-jest"
]
},
"testMatch": [
"**/src/__test__/**/?(*.)+(spec|test).[jt]s"
],
"globals": {},
"collectCoverageFrom": [
"<rootDir>/**/*.{ts, tsx}"
],
"coveragePathIgnorePatterns": [
"/node_modules/",
"/__test__/"
],
"coverageReporters": [
"json",
"lcov",
"text",
"text-summary"
]
}
}