This repository has been archived by the owner on Oct 13, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
73 lines (73 loc) · 1.64 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
{
"name": "swagger-t-str",
"version": "1.1.5",
"description": "Specification-Driven test framework",
"main": "index.js",
"bin": {
"swagger-t-str": "./bin/swagger-t-str"
},
"engines": {
"node": ">= 0.10.x",
"npm": ">= 1.4.x"
},
"nyc": {
"include": [
"lib/**/*.js",
"index.js",
"bin/**/*.js"
],
"includeAllSources": true,
"reporter": [
"html",
"text",
"text-summary"
],
"report-dir": "./test-results/unit-tests"
},
"scripts": {
"test": "npm run test-unit && npm run test-integration",
"test-unit": "nyc npm run test-unit-only",
"test-unit-only": "NODE_ENV=test _mocha './unit-tests/**/*.spec.js'",
"test-integration": "NODE_ENV=test _mocha './integration-tests/index.spec.js'"
},
"dependencies": {
"commander": "2.x.x",
"js-yaml": "3.x.x",
"mocha": "3.x.x",
"chai": "3.x.x",
"chai-subset": "1.x.x",
"swagger-client": "2.x.x",
"swagger-tools": "0.x.x"
},
"devDependencies": {
"proxyquire": "1.x.x",
"chai-as-promised": "6.x.x",
"sinon": "1.x.x",
"sinon-chai": "2.x.x",
"istanbul": "0.x.x",
"nyc": "10.x.x",
"express": "4.x.x"
},
"repository": {
"type": "git",
"url": "git+https://github.com/CloudletLabs/swagger-t-str.git"
},
"keywords": [
"swagger",
"test",
"tests",
"tdd",
"bdd",
"api",
"spec",
"specification",
"driven",
"development"
],
"author": "Dmytro Kryvenko",
"license": "MIT",
"bugs": {
"url": "https://github.com/CloudletLabs/swagger-t-str/issues"
},
"homepage": "https://github.com/CloudletLabs/swagger-t-str#readme"
}