-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 1.51 KB
/
package.json
File metadata and controls
64 lines (64 loc) · 1.51 KB
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
{
"name": "serviser-doc",
"version": "2.1.4",
"bin": "./bin/serviser-doc.js",
"description": "automated API documentation module",
"main": "index.js",
"scripts": {
"test:acceptance": "mocha --ui bdd --colors --check-leaks -t 5000 --reporter spec --parse-pos-args false 'tests/acceptance/**/*.js'",
"test:unit": "mocha --ui bdd --colors --check-leaks -t 5000 --reporter spec 'tests/unit/**/*.js'",
"test": "npm run test:unit && npm run test:acceptance"
},
"testFramework": "mocha",
"engines": {
"node": ">=6.4.0"
},
"repository": {
"type": "git",
"url": "https://github.com/lucid-services/serviser-doc"
},
"keywords": [
"documentation",
"api",
"serviser",
"service",
"automatization",
"autogeneration"
],
"files": [
"bin",
"lib",
"public",
"index.js",
"README.md",
"CHANGELOG.md"
],
"author": "fogine",
"private": false,
"peerDependencies": {
"serviser": "^2.0.0",
"express": "^4.14.0"
},
"dependencies": {
"serviser-ajv2swagger": "^0.3.0",
"json-schema-faker": "0.5.0-rc16",
"faker": "^4.1.0",
"json5": "^1.0.1",
"lodash": "^4.16.2",
"mustache": "^2.3.0",
"uuid": "^3.3.2",
"yargs": "^8.0.0"
},
"license": "MIT",
"devDependencies": {
"serviser": "^2.0.0",
"express": "^4.14.0",
"chai": "^3.5.0",
"istanbul": "^0.4.3",
"chai-as-promised": "^5.3.0",
"sinon-chai": "^2.8.0",
"sinon": "^1.17.3",
"sinon-as-promised": "^4.0.0",
"mocha": "^2.5.3"
}
}