-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
88 lines (88 loc) · 2.28 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
{
"name": "openapi-editor",
"version": "0.4.0",
"description": "OpenAPI Editor is a wrapper for Swagger-Editor 3.x",
"author": "Jose G. Alfonso <[email protected]>",
"main": "dist/editor.js",
"types": "dist/editor.d.ts",
"bin": {
"openapi-editor": "./dist/index.js"
},
"scripts": {
"build:watch": "tsc --watch",
"build": "tsc",
"ci": "npm run lint && npm run build && npm run test:coverage",
"docs": "typedoc --out docs src",
"gh-pages": "rimraf docs && npm run docs && gh-pages -d docs",
"lint": "tslint --project \"./tsconfig.json\"",
"postversion": "git push && git push --tags",
"prepublishOnly": "npm run ci",
"preversion": "npm run ci",
"coverage": "nyc report --reporter=text-lcov | coveralls",
"test": "nyc mocha -r ts-node/register **/*.spec.ts",
"test:coverage": "TS_NODE_COMPILER_OPTIONS='{\"target\":\"es6\"}' nyc mocha **/*.spec.ts",
"test:watch": "mocha -r ts-node/register src/**/*.spec.ts --watch --watch-extensions ts"
},
"keywords": [
"OpenAPI",
"Swagger",
"Swagger Editor"
],
"engines": {
"node": ">=12.13"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Codermar/openapi-editor.git"
},
"license": "MIT",
"nyc": {
"extends": "@istanbuljs/nyc-config-typescript",
"all": true,
"check-coverage": true,
"include": [
"**/*.spec.ts"
],
"extension": [
".ts"
],
"require": [
"ts-node/register",
"source-map-support/register"
],
"reporter": [
"text-summary",
"html"
],
"sourceMap": true,
"instrument": true,
"fullTrace": true,
"bail": true,
"lines": 40
},
"devDependencies": {
"@types/chai": "4.2.14",
"@types/mocha": "8.2.0",
"@types/node": "14.14.14",
"chai": "4.2.0",
"coveralls": "3.1.0",
"gh-pages": "3.1.0",
"mocha": "8.2.1",
"nyc": "15.1.0",
"source-map-support": "0.5.19",
"ts-node": "9.1.1",
"tslint": "6.1.3",
"typedoc": "0.19.2",
"typescript": "4.1.3"
},
"dependencies": {
"@istanbuljs/nyc-config-typescript": "1.0.1",
"@types/express": "4.17.9",
"colors": "1.4.0",
"commander": "6.2.1",
"connect": "3.7.0",
"debug": "4.3.1",
"serve-static": "1.14.1",
"swagger-editor-dist": "3.14.8"
}
}