This repository has been archived by the owner on Mar 26, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 59
/
package.json
75 lines (75 loc) · 1.76 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
{
"name": "@strest/cli",
"version": "2.5.1",
"description": "A new dimension of REST API testing",
"main": "dist/main.js",
"repository": "https://github.com/eykrehbein/strest",
"author": "Eyk Rehbein",
"license": "MIT",
"private": false,
"preferGlobal": true,
"bin": {
"strest": "dist/main.js"
},
"scripts": {
"build": "tsc",
"test": "strest tests/success",
"publish": "tsc && npm publish"
},
"dependencies": {
"ajv": "^6.5.5",
"axios": "^0.18.0",
"chalk": "^2.4.1",
"commander": "^2.17.1",
"deep-eql": "4.0.0",
"faker": "^4.1.0",
"form-data": "^2.3.3",
"get-line-from-pos": "1.0.0",
"joi": "^13.6.0",
"js-yaml": "^3.12.0",
"jsonfile": "^5.0.0",
"jsonpath": "^1.0.0",
"line-number": "0.1.0",
"mkdirp": "^0.5.1",
"nunjucks": "^3.1.3",
"nunjucks-date": "^1.2.0",
"ora": "^3.2.0",
"recursive-readdir": "^2.2.2",
"request-to-curl": "^0.1.1",
"sort-paths": "^1.1.1"
},
"jest": {
"transform": {
"^.+\\.tsx?$": "ts-jest"
},
"testRegex": "(/__tests__/.*|(\\.|/)(jest|spec))\\.(jsx?|tsx?)$",
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"jsx",
"json",
"node"
]
},
"devDependencies": {
"@types/commander": "^2.12.2",
"@types/faker": "^4.1.3",
"@types/form-data": "^2.2.1",
"@types/jest": "^23.3.2",
"@types/joi": "^13.4.4",
"@types/js-yaml": "^3.11.2",
"@types/jsonfile": "^4.0.1",
"@types/jsonpath": "^0.2.0",
"@types/node": "^10.9.4",
"@types/nunjucks": "^3.1.0",
"@types/nunjucks-date": "0.0.6",
"@types/recursive-readdir": "^2.2.0",
"jest": "^23.6.0",
"ts-jest": "^23.1.4",
"typescript": "^3.0.3"
},
"publishConfig": {
"access": "public"
}
}