-
-
Notifications
You must be signed in to change notification settings - Fork 35
/
package.json
95 lines (95 loc) · 2.45 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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
{
"name": "just-api",
"version": "1.2.5",
"description": "Specification based API test framework for HTTP APIs (REST, GraphQL)",
"homepage": "https://kiranz.github.io/just-api/",
"keywords": [
"API",
"mocha",
"REST",
"GraphQL",
"testing",
"test",
"restful",
"rest",
"http",
"webservice",
"microservice",
"yaml",
"testrunner",
"QA",
"api",
"automation",
"testreporter"
],
"author": "Kiran Mandadi <kiran.6d.hex@gmail.com>",
"contributors": [
"Kiran Mandadi <kiran.6d.hex@gmail.com> (https://github.com/kiranz)"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/kiranz/just-api.git"
},
"engines": {
"node": ">=7.10.0",
"npm": ">=4.5.0"
},
"publishConfig": {
"registry": "https://registry.npmjs.org/"
},
"scripts": {
"clean": "rm -rf ./node_modules",
"install_testapi": "cd test/api && npm install",
"start_testapi": "npm run install_testapi && cd test/api && node server.js",
"clean_testlogs": "rm -rf test/cli/src/logs && mkdir test/cli/src/logs",
"test": "npm run clean_testlogs && ./node_modules/.bin/mocha --timeout 10000 test/cli/*.spec.js"
},
"dependencies": {
"commander": "2.11.0",
"debug": "3.1.0",
"glob": "7.1.2",
"mkdirp": "0.5.1",
"js-yaml": "3.11.0",
"jsonschema": "1.2.2",
"request": "2.85.0",
"url-parse": "1.4.3",
"chai": "4.1.2",
"string-template": "1.0.0",
"esprima": "4.0.0",
"jsonpath": "1.0.0",
"pretty-ms": "3.1.0",
"error-ex": "1.3.1",
"chalk": "2.4.1",
"lodash": "4.17.10",
"serialize-error": "2.1.0",
"semver": "5.5.0",
"he": "1.1.1",
"request-cookies": "1.1.0"
},
"devDependencies": {
"babel-cli": "^6.24.1",
"babel-plugin-add-module-exports": "^0.2.1",
"babel-plugin-array-includes": "^2.0.3",
"babel-plugin-transform-es2015-destructuring": "^6.23.0",
"babel-plugin-transform-es2015-modules-commonjs": "^6.24.1",
"babel-plugin-transform-es2015-parameters": "^6.24.1",
"babel-plugin-transform-es2015-spread": "^6.22.0",
"babel-plugin-transform-object-rest-spread": "^6.23.0",
"babel-plugin-transform-react-jsx": "^6.24.1",
"babel-register": "^6.24.1",
"gulp": "3.9.1",
"gulp-babel": "7.0.1",
"del": "3.0.0",
"mocha": "5.2.0",
"cross-spawn": "6.0.5",
"chai": "4.1.2"
},
"bin": {
"just-api": "./bin/just-api"
},
"files": [
"bin",
"src"
]
}