-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
65 lines (65 loc) · 1.42 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
{
"name": "typescript-design-patterns",
"version": "0.0.1",
"description": "Design patterns implementations in TypeScript",
"main": "index.js",
"scripts": {
"test": "jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/rpressiani/typescript-design-patterns.git"
},
"keywords": [
"design",
"patterns",
"typescript"
],
"author": "Riccardo Pressiani <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/rpressiani/typescript-design-patterns/issues"
},
"homepage": "https://github.com/rpressiani/typescript-design-patterns#readme",
"devDependencies": {
"@types/jest": "^23.3.2",
"@types/node": "^10.10.3",
"jest": "^23.6.0",
"jest-cli": "^23.6.0",
"ts-jest": "^23.10.1",
"tslint": "^5.11.0",
"tslint-config-airbnb": "^5.11.0",
"typescript": "^3.0.3"
},
"jest": {
"silent": true,
"moduleFileExtensions": [
"ts",
"tsx",
"js"
],
"transform": {
"\\.(ts|tsx)$": "ts-jest"
},
"testRegex": "/__tests__/.*\\.(ts|tsx|js)$",
"collectCoverage": true,
"coverageReporters": [
"json",
"html",
"lcov"
],
"collectCoverageFrom": [
"**/*.ts",
"!**/node_modules/**",
"!**/demo.ts"
],
"globals": {
"ts-jest": {
"tsConfig": "tsconfig.json"
}
}
},
"dependencies": {
"readline": "^1.3.0"
}
}