-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
51 lines (51 loc) · 1.4 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
{
"name": "jitsi-tests",
"version": "1.0.0",
"description": "",
"main": "./dist/src/index.js",
"scripts": {
"start": "npm run build && node --require dotenv/config ./dist/src/index.js",
"start:nobuild": "node --require dotenv/config ./dist/src/index.js",
"clean": "tsc --build --clean",
"build": "tsc --pretty",
"test": "jest",
"test:watch": "jest --watchAll"
},
"author": "",
"license": "ISC",
"dependencies": {
"ajv": "^7.1.0",
"ajv-formats": "^0.5.0",
"commander": "^6.2.1",
"dotenv": "^8.2.0",
"js-yaml": "^3.14.1",
"jsonwebtoken": "^8.5.1",
"junit-report-builder": "^2.1.0",
"selenium-webdriver": "^4.0.0-beta.2"
},
"devDependencies": {
"@babel/core": "^7.12.13",
"@babel/preset-env": "^7.12.13",
"@babel/preset-typescript": "^7.12.13",
"@types/jest": "^26.0.21",
"@types/js-yaml": "^3.12.6",
"@types/jsonwebtoken": "^8.5.1",
"@types/node": "^14.14.35",
"@types/selenium-webdriver": "^4.0.11",
"@typescript-eslint/eslint-plugin": "^4.18.0",
"@typescript-eslint/parser": "^4.18.0",
"babel-jest": "^26.6.3",
"eslint": "^7.22.0",
"eslint-config-airbnb-typescript": "^12.3.1",
"eslint-plugin-import": "^2.22.1",
"jest": "^26.6.3",
"typescript": "^4.1.5"
},
"jest": {
"collectCoverage": true,
"testTimeout": 5000,
"modulePathIgnorePatterns": [
"<rootDir>/dist"
]
}
}