-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
69 lines (69 loc) · 2.02 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
{
"name": "@boxed/doctopus",
"version": "1.3.5",
"description": "Fluent & Pluggable Swagger Specification Builder",
"homepage": "",
"author": {
"name": "Ben Lugavere",
"email": "[email protected]",
"url": "http://benlugavere.com/"
},
"files": [
"dist",
"doctopus.d.ts"
],
"main": "dist/index.js",
"keywords": [
"swagger",
"openapi",
"doc",
"docs",
"documentation",
"express",
"api",
"apis"
],
"devDependencies": {
"@types/chai": "4.1.2",
"@types/expect": "1.20.3",
"@types/lodash": "^4.14.77",
"@types/mocha": "9.0.0",
"@types/node": "16.11.19",
"@types/sinon": "10.0.6",
"@typescript-eslint/eslint-plugin": "5.8.0",
"@typescript-eslint/parser": "5.8.0",
"chai": "4.1.2",
"del": "5.0.0",
"eslint": "7.32.0",
"eslint-import-resolver-typescript": "2.5.0",
"eslint-plugin-chai-friendly": "0.6.0",
"eslint-plugin-import": "2.22.0",
"eslint-plugin-mocha": "7.0.1",
"eslint-plugin-promise": "4.2.1",
"eslint-watch": "7.0.0",
"expect": "^1.20.2",
"mocha": "^9.2.2",
"nyc": "15.1.0",
"sinon": "12.0.1",
"source-map-support": "0.5.12",
"ts-node": "^10.9.2",
"typescript": "4.5.4"
},
"repository": "giddyinc/doctopus",
"scripts": {
"lint": "eslint ./lib",
"prepublish": "npm run build",
"test": "nyc --reporter=text --reporter=html --reporter=lcov mocha lib/**/*.test.ts test/**/*.ts",
"test:watch": "tsc --watch",
"coverage": "nyc report --reporter=text-lcov | coveralls",
"build": "tsc --project tsconfig.publish.json",
"clean": "rm -rf dist"
},
"dependencies": {
"@types/swagger-schema-official": "2.0.9",
"auto-bind": "^1.2.0",
"lodash": "4.17.21",
"lodash.clonedeep": "^4.5.0"
},
"typings": "dist/index"
}