-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
54 lines (54 loc) · 1.23 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
{
"name": "webrts",
"version": "1.0.0",
"description": "",
"private": true,
"scripts": {
"watch": "lerna run --parallel watch",
"build": "lerna run build",
"clean": "lerna run clean",
"coverage": "jest --coverage",
"test": "npm run build && jest",
"lint": "lerna run lint",
"publish": "npm run build && lerna publish"
},
"author": "",
"license": "MIT",
"dependencies": {
"@types/jest": "^25.1.4",
"@types/node": "^13.9.2",
"@typescript-eslint/eslint-plugin": "^2.24.0",
"@typescript-eslint/parser": "^2.24.0",
"eslint": "^6.8.0",
"eslint-config-prettier": "^6.10.0",
"eslint-plugin-prettier": "^3.1.2",
"jest": "^25.1.0",
"lerna": "^3.20.2",
"prettier": "^1.19.1",
"ts-jest": "^25.2.1",
"ts-node": "^8.7.0",
"typescript": "^3.8.3"
},
"jest": {
"transform": {
"^.+\\.tsx?$": "ts-jest"
},
"testMatch": [
"**/__tests__/**/?(*.)+(spec|test).(ts|js)",
"**/?(*.)+(spec|test).ts"
],
"moduleFileExtensions": [
"js",
"ts"
],
"globals": {
"ts-jest": {
"tsConfig": "tsconfig.json"
}
},
"collectCoverageFrom": [
"packages/**/src/**/*.ts?(x)",
"!**/@types/**"
]
}
}