-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.12 KB
/
package.json
File metadata and controls
56 lines (56 loc) · 1.12 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
{
"name": "ts-bloc",
"version": "0.0.0",
"main": "dist/lib/bloc.js",
"module": "dist/lib/bloc.js",
"typings": "dist/types/bloc.d.ts",
"files": [
"dist"
],
"scripts": {
"ng": "ng",
"start": "ng serve",
"build": "ng build",
"watch": "ng build --watch --configuration development",
"test": "ng test"
},
"dependencies": {
"@esfx/equatable": "^1.0.2",
"jest": "^29.3.1",
"rxjs": "~7.5.0",
"ts-jest": "^29.0.3",
"tslib": "^2.3.0",
"zone.js": "~0.12.0"
},
"jest": {
"transform": {
".(ts|tsx)": "ts-jest"
},
"testEnvironment": "node",
"testRegex": "(/__tests__/.*|\\.(test))\\.(ts|tsx|js)$",
"moduleFileExtensions": [
"ts",
"tsx",
"js"
],
"coveragePathIgnorePatterns": [
"/node_modules/",
"/test/"
],
"coverageThreshold": {
"global": {
"branches": 100,
"functions": 100,
"lines": 100,
"statements": 100
}
},
"collectCoverageFrom": [
"lib/src/*.{js,ts}"
]
},
"devDependencies": {
"@types/jest": "^29.2.3",
"typescript": "~4.8.2"
}
}