-
Notifications
You must be signed in to change notification settings - Fork 54
/
Copy pathpackage.json
77 lines (77 loc) · 1.71 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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
{
"name": "pactum",
"version": "3.7.6",
"description": "REST API Testing Tool for all levels in a Test Pyramid",
"main": "./src/index.js",
"types": "./src/index.d.ts",
"files": [
"/src"
],
"scripts": {
"test": "npm run test:unit && npm run test:component",
"test:unit": "mocha --timeout 10000 ./test/unit/",
"test:component": "mocha --timeout 10000 ./test/component/",
"test:component:tag": "mocha --timeout 10000 ./test/component/ --grep '@tag'",
"coverage": "nyc --reporter=lcov --reporter=text npm run test",
"lint": "eslint src/**/*.js"
},
"keywords": [
"api",
"REST",
"automation",
"testing",
"component",
"service",
"contract",
"integration",
"e2e",
"fuzz",
"bdd",
"tdd",
"cucumber",
"mocha",
"jest",
"mock",
"server",
"JSON",
"pactum",
"pactumjs",
"microservice",
"microservices",
"test",
"http",
"GraphQL"
],
"repository": {
"type": "git",
"url": "https://github.com/pactumjs/pactum.git"
},
"homepage": "https://pactumjs.github.io",
"bugs": {
"url": "https://github.com/pactumjs/pactum/issues"
},
"author": "Anudeep <[email protected]>",
"license": "MIT",
"dependencies": {
"@exodus/schemasafe": "^1.3.0",
"deep-override": "^1.0.2",
"form-data-lite": "^1.0.3",
"json-query": "^2.2.2",
"klona": "^2.0.6",
"cookie-lite": "^0.0.1",
"openapi-fuzzer-core": "^1.0.6",
"pactum-matchers": "^1.1.7",
"parse-graphql": "^1.0.0",
"phin": "^3.7.1",
"polka": "^0.5.2"
},
"devDependencies": {
"chai": "^4.4.1",
"mocha": "^10.3.0",
"nyc": "^15.1.0",
"sinon": "^15.2.0"
},
"engines": {
"node": ">=10"
}
}