-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
45 lines (45 loc) · 1.17 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
{
"name": "pactum-flow-api",
"private": true,
"version": "1.0.0",
"description": "Backend API for pactum flow",
"main": "src/server.js",
"scripts": {
"start": "nodemon src/server.js",
"start:dev": "nodemon src/server.js",
"test": "mocha -b --timeout 5000 --slow 250 test/component/specs",
"coverage": "c8 --include=src npm run test",
"seed": "node test/seed/index.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/pactumjs/pactum-flow-api.git"
},
"keywords": [
"pactum",
"pactumjs"
],
"author": "Anudeep <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/pactumjs/pactum-flow-api/issues"
},
"homepage": "https://github.com/pactumjs/pactum-flow-api#readme",
"dependencies": {
"express": "^4.19.2",
"jsonwebtoken": "^8.5.1",
"loglevel": "^1.8.0",
"mongoose": "^5.11.4",
"pactum-matchers": "latest",
"swagger-express-mw": "^0.7.0",
"swagger-tools": "^0.10.4",
"uuid": "^8.3.2"
},
"devDependencies": {
"c8": "^7.12.0",
"mocha": "^10.0.0",
"pactum": "^3.6.5",
"pactum-flow-plugin": "^0.0.4",
"nodemon": "^3.1.0"
}
}