forked from Codermar/openapi-editor
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
88 lines (88 loc) · 2.3 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.3.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.11",
"@types/mocha": "^7.0.2",
"@types/node": "^13.9.5",
"chai": "^4.2.0",
"coveralls": "^3.0.11",
"gh-pages": "^2.2.0",
"mocha": "^7.1.1",
"nyc": "^15.0.0",
"source-map-support": "^0.5.16",
"ts-node": "^8.8.1",
"tslint": "^6.1.0",
"typedoc": "^0.17.3",
"typescript": "^3.8.3"
},
"dependencies": {
"@istanbuljs/nyc-config-typescript": "^1.0.1",
"@types/express": "^4.17.3",
"colors": "^1.4.0",
"commander": "^5.0.0",
"connect": "^3.7.0",
"debug": "^4.1.1",
"serve-static": "^1.14.1",
"swagger-editor-dist": "^3.8.0"
}
}