This repository has been archived by the owner on Sep 3, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
60 lines (60 loc) · 1.74 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
{
"name": "typescript-openapi-builder",
"version": "0.0.4",
"description": "Generate OpenAPI spec using TypeScript annotations",
"main": "dist/index.js",
"repository": "https://github.com/wdes/typescript-openapi-builder.git",
"author": {
"name": "William Desportes",
"email": "[email protected]",
"url": "https://william.wdes.fr"
},
"scripts": {
"build": "tsc",
"prettier": "prettier --ignore-path ./.prettierignore --write \"*/**/*.ts\"",
"tests": "mocha --require ts-node/register --require source-map-support/register --ui tdd test/index.ts",
"test": "NODE_ENV=test nyc --all yarn run -s tests",
"report-coverage": "nyc report --reporter=text-lcov > coverage.lcov",
"prepublish": "rm -rf dist && yarn run build"
},
"license": "MPL-2.0",
"private": false,
"dependencies": {
"typescript-json-schema": "^0.42.0"
},
"devDependencies": {
"@types/chai": "^4.2.11",
"@types/mocha": "^7.0.2",
"@types/node": "^13.13.5",
"@types/reflect-metadata": "^0.1.0",
"chai": "^4.2.0",
"mocha": "^7.1.2",
"nyc": "^15.0.1",
"prettier": "^2.0.5",
"ts-node": "^8.10.1",
"typescript": "^3.8.3"
},
"prettier": {
"singleQuote": true,
"proseWrap": "never",
"trailingComma": "es5",
"bracketSpacing": true,
"printWidth": 120
},
"nyc": {
"extension": [
".ts"
],
"exclude": [
"dist",
"coverage",
".nyc_output",
"test/data/*.ts"
],
"reporter": [
"text",
"text-summary"
],
"all": true
}
}