-
Notifications
You must be signed in to change notification settings - Fork 23
/
Copy pathpackage.json
33 lines (33 loc) · 929 Bytes
/
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
{
"name": "apicenter-analyzer",
"version": "0.0.1-preview",
"description": "Azure Function Template that Runs Analysis on your API Definition",
"scripts": {
"build": "tsc",
"watch": "tsc -w",
"clean": "rimraf dist",
"prestart": "npm run clean && npm run build",
"start": "func start",
"test": "jest"
},
"dependencies": {
"@azure/functions": "^4.0.0",
"@azure/identity": "^4.0.0",
"@azure/ms-rest-js": "^2.7.0",
"@stoplight/spectral-core": "^1.18.3",
"@stoplight/spectral-parsers": "^1.0.3",
"@stoplight/spectral-ruleset-bundler": "^1.5.2",
"@stoplight/spectral-runtime": "^1.1.2"
},
"devDependencies": {
"@types/jest": "^29.5.12",
"@types/node": "^18.x",
"jest": "^29.7.0",
"rimraf": "^5.0.0",
"ts-jest": "^29.1.2",
"ts-node": "^10.9.2",
"ts-node-dev": "^2.0.0",
"typescript": "^4.0.0"
},
"main": "dist/src/functions/*.js"
}