-
Notifications
You must be signed in to change notification settings - Fork 17
/
package.json
57 lines (57 loc) · 1.25 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
{
"name": "tinyspec",
"version": "2.5.0",
"description": "Simple syntax for describing REST APIs",
"main": "index.js",
"bin": {
"tinyspec": "./index.js"
},
"dependencies": {
"glob": "^7.1.7",
"lodash": "^4.17.21",
"lodash-inflection": "^1.5.0",
"yamljs": "^0.3.0",
"yargs": "^17.0.1"
},
"peerDependencies": {
"bootprint": "^4.0.4",
"bootprint-openapi": "^4.0.4"
},
"scripts": {
"example:docs": "tinyspec -h -o docs/",
"test": "jest",
"lint": "eslint .",
"precommit": "npm run lint"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Ajaxy/tinyspec.git"
},
"keywords": [
"api",
"rest",
"openapi",
"swagger",
"specification",
"documentation",
"models",
"definitions",
"endpoints",
"paths"
],
"author": "Alexander Zinchuk ([email protected])",
"license": "MIT",
"bugs": {
"url": "https://github.com/Ajaxy/tinyspec/issues"
},
"homepage": "https://github.com/Ajaxy/tinyspec#readme",
"devDependencies": {
"eslint": "^7.30.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-plugin-import": "^2.23.4",
"husky": "^7.0.1",
"jest": "^27.0.6",
"merge": "^2.1.1",
"swagger-parser": "^10.0.2"
}
}