-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
61 lines (61 loc) · 1.68 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
55
56
57
58
59
60
61
{
"name": "warehouse-deliverr-tests",
"version": "1.0.0",
"description": "A test suite for 3PLs to run and test their Deliverr integration",
"main": "index.js",
"scripts": {
"build": "tsc",
"test1": "jest TestsPart1 --runInBand --silent --testPathIgnorePatterns dist/* --forceExit --detectOpenHandles",
"test2": "jest TestsPart2 --runInBand --silent --testPathIgnorePatterns dist/* --forceExit",
"test3": "jest TestsPart3 --runInBand --silent --testPathIgnorePatterns dist/* --forceExit",
"test4": "jest TestsPart4 --runInBand --silent --testPathIgnorePatterns dist/* --forceExit"
},
"repository": {
"type": "git",
"url": "git+https://github.com/deliverr/warehouse-deliverr-tests.git"
},
"author": "Vicki Chow",
"license": "ISC",
"bugs": {
"url": "https://github.com/deliverr/warehouse-deliverr-tests/issues"
},
"homepage": "https://github.com/deliverr/warehouse-deliverr-tests#readme",
"jest": {
"automock": false,
"testEnvironment": "node",
"transform": {
".(ts)": "ts-jest"
},
"testRegex": "(\\.(ispec|uspec))\\.(ts)$",
"roots": [
"<rootDir>/"
],
"moduleFileExtensions": [
"ts",
"js",
"json"
],
"collectCoverageFrom": [
"src/**/*.ts"
],
"setupFiles": [
"<rootDir>/env-setup.js"
]
},
"dependencies": {
"@types/dotenv": "^8.2.0",
"@types/qs": "^6.9.0",
"axios": "^0.18.1",
"moment": "^2.24.0",
"qs": "^6.9.1"
},
"devDependencies": {
"@types/axios": "^0.14.0",
"@types/jest": "^24.0.23",
"@types/node": "^12.12.22",
"dotenv": "^8.2.0",
"jest": "^24.9.0",
"ts-jest": "^24.2.0",
"typescript": "^3.7.3"
}
}