forked from dicoding-dev/assistest
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
39 lines (39 loc) · 1.16 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
{
"name": "assistest",
"version": "1.0.0",
"description": "Run server and newman testing",
"main": "index.js",
"repository": "[email protected]:agissept/assistest.git",
"scripts": {
"start": "ts-node src/interface/implementation-test.ts",
"test": "RUN_MODE=TEST jest -i",
"unit-test": "RUN_MODE=TEST jest --testPathPattern=unit.test",
"integration-test": "RUN_MODE=TEST jest --testPathPattern=integration.test -i",
"assistest": "ts-node src/interface/cli.ts",
"assistest-verbose": "DEBUG_MODE=true ts-node src/interface/cli.ts"
},
"author": "agissept",
"license": "MIT",
"dependencies": {
"@types/node": "^18.8.4",
"axios": "^0.27.2",
"del": "^6.1.1",
"dotenv": "^16.0.3",
"minimist": "^1.2.7",
"newman": "^5.3.2",
"tcp-port-used": "^1.0.2",
"tree-kill": "^1.2.2",
"ts-node": "^10.9.1",
"typescript": "^4.8.4"
},
"devDependencies": {
"@types/jest": "^29.1.2",
"@types/minimist": "^1.2.4",
"@types/newman": "^5.3.1",
"@typescript-eslint/eslint-plugin": "^5.40.0",
"@typescript-eslint/parser": "^5.40.0",
"eslint": "^8.25.0",
"jest": "^29.1.2",
"ts-jest": "^29.0.3"
}
}