-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
52 lines (52 loc) · 1.69 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
{
"name": "e2e_tests",
"version": "0.0.1",
"description": "End to end test with jest and puppeteer",
"contributors": [
"Saeed Ghareh Daghi <saeed.gharehdaghi@kpn.com>",
"Ilhan Mercan <ilhan.mercan@kpn.com>"
],
"license": "MIT",
"scripts": {
"test": "node --max-old-space-size=18192 --expose-gc node_modules/jest-cli/bin/jest.js tests --colors --forceExit --detectOpenHandles",
"test:only": "node --max-old-space-size=18192 --expose-gc node_modules/jest-cli/bin/jest.js -t $TEST_NAMES --colors --forceExit --detectOpenHandles",
"test:debug": "node --inspect node_modules/.bin/jest tests --runInBand",
"test:wo": "node --max-old-space-size=18192 --expose-gc node_modules/jest-cli/bin/jest.js tests --watch -t $TEST_NAMES --colors --forceExit --detectOpenHandles",
"lint": "./node_modules/.bin/eslint tests",
"lint:fix": "./node_modules/.bin/eslint -- --fix"
},
"jest": {
"testEnvironment": "node",
"testPathIgnorePatterns": [
"/node_modules/"
],
"testMatch": [
"**/?(*.)(test).js?(x)"
],
"globals": {
"__JASMINE_TIMEOUT__": 150000
}
},
"dependencies": {
"@babel/core": "^7.6.4",
"babel-plugin-root-import": "^6.4.1",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-preset-env": "^1.7.0",
"dotenv": "^8.2.0",
"eslint-plugin-jest": "^22.17.0",
"jest-cli": "^24.9.0",
"package.json": "^2.0.1",
"yarn": "^1.22.0"
},
"devDependencies": {
"@types/jest": "^24.0.18",
"babel-eslint": "^10.0.3",
"chalk": "^2.4.2",
"eslint": "^6.5.1",
"jest": "^24.9.0",
"jest-puppeteer": "^4.3.0",
"prettier": "^1.18.2",
"puppeteer": "^1.20.0",
"rimraf": "^2.6.3"
}
}