-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 1.67 KB
/
package.json
File metadata and controls
61 lines (61 loc) · 1.67 KB
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
{
"name": "@aaronpowell/azure-functions-nodejs-openapi",
"version": "0.4.0",
"description": "Support for generating OpenAPI spec files for Azure Functions",
"main": "./build/index.js",
"bin": {
"openapi-func": "./bin/index.js"
},
"scripts": {
"build": "tsc",
"prebuild": "npm run clean",
"watch": "tsc -w",
"lint": "eslint src/**/*.ts",
"lint:fix": "npm run lint -- --fix",
"clean": "rimraf dist",
"start": "cd example/trivia-game && npm start",
"prestart": "npm run build",
"prepare": "husky install"
},
"repository": {
"type": "git",
"url": "git+https://github.com/aaronpowell/azure-functions-nodejs-openapi.git"
},
"keywords": [
"azure",
"openapi",
"swagger",
"azure-functions"
],
"author": {
"email": "me+github@aaron-powell.com",
"name": "Aaron Powell",
"url": "https://www.aaron-powell.com"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/aaronpowell/azure-functions-nodejs-openapi/issues"
},
"homepage": "https://github.com/aaronpowell/azure-functions-nodejs-openapi#readme",
"devDependencies": {
"@commitlint/cli": "^16.1.0",
"@commitlint/config-conventional": "^16.0.0",
"@types/node": "^17.0.1",
"@typescript-eslint/eslint-plugin": "^5.7.0",
"@typescript-eslint/parser": "^5.7.0",
"eslint": "^8.5.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^4.0.0",
"husky": "^7.0.4",
"prettier": "^2.5.1",
"rimraf": "^3.0.2",
"typescript": "^4.5.4"
},
"dependencies": {
"@azure/functions": "^3.0.0",
"chalk": "^4.1.2",
"commander": "^9.0.0",
"inquirer": "^8.2.0",
"openapi-types": "^10.0.0"
}
}