-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
42 lines (42 loc) · 935 Bytes
/
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
{
"name": "@browserd/shared",
"version": "1.0.0",
"description": "shared functionality between the consumer and provider",
"main": "dist/index.js",
"author": {
"name": "bengreenier",
"email": "[email protected]"
},
"license": "MIT",
"scripts": {
"lint": "tslint -p .",
"build": "tsc -p .",
"test": "jest --coverage"
},
"jest": {
"collectCoverageFrom": [
"./src/**/*.ts"
],
"preset": "ts-jest",
"testRegex": [
"/__tests__/.*spec\\.[jt]sx?$"
],
"testResultsProcessor": "jest-sonar-reporter"
},
"dependencies": {
"strict-event-emitter-types": "^2.0.0"
},
"devDependencies": {
"@types/dotenv": "^6.1.1",
"@types/jest": "^24.0.13",
"@types/pino": "^5.8.8",
"@types/sdp-transform": "^2.4.0",
"@types/uuid": "^3.4.4",
"jest": "^24.8.0",
"jest-fetch-mock": "^2.1.2",
"jest-sonar-reporter": "^2.0.0",
"ts-jest": "^24.0.2",
"tslint": "^5.17.0",
"typescript": "^3.5.1"
}
}