forked from dicoding-dev/assistest
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 1.16 KB
/
package.json
File metadata and controls
39 lines (39 loc) · 1.16 KB
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": "git@github.com: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": {
"axios": "^1.12.2",
"del": "^8.0.1",
"dotenv": "^17.2.3",
"minimist": "^1.2.8",
"newman": "^6.2.1",
"tcp-port-used": "^1.0.2",
"tree-kill": "^1.2.2",
"ts-node": "^10.9.2",
"typescript": "^5.9.3"
},
"devDependencies": {
"@types/jest": "^30.0.0",
"@types/minimist": "^1.2.5",
"@types/newman": "^5.3.6",
"@types/node": "^24.9.1",
"@typescript-eslint/eslint-plugin": "^8.46.2",
"@typescript-eslint/parser": "^8.46.2",
"eslint": "^8.57.1",
"jest": "^30.2.0",
"ts-jest": "^29.4.5"
}
}