-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
50 lines (50 loc) · 1.43 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
{
"name": "hasura-ndc-oas-lambda",
"version": "1.1.0",
"description": "Hasura NDC Open API Connector",
"main": "dist/cli/index.js",
"bin": {
"ndc-oas-lambda": "./dist/cli/index.js"
},
"scripts": {
"compile": "tsc",
"install-bin": "npm test && npm run compile && npm install -g .",
"install-bin-unsafe": "npm run compile && npm install -g .",
"build": "webpack",
"test": "mocha --require ts-node/register --timeout 30000 --ui bdd ./src/**/*.test.ts",
"format": "npx prettier . --write"
},
"dependencies": {
"@npmcli/package-json": "^5.0.0",
"circular-json": "^0.5.9",
"commander": "^12.0.0",
"eta": "^3.2.0",
"figlet": "^1.7.0",
"pacote": "^17.0.5",
"pino": "^8.19.0",
"pino-pretty": "^11.0.0",
"prettier": "3.2.5",
"semver": "^7.5.4",
"swagger-typescript-api": "^13.0.3",
"ts-morph": "^22.0.0",
"yeoman-generator": "^5.10.0"
},
"devDependencies": {
"@tsconfig/node18": "^18.2.2",
"@types/mocha": "^10.0.6",
"@types/node": "^20.11.30",
"@types/npmcli__package-json": "^4.0.4",
"@types/pacote": "^11.1.8",
"@types/semver": "^7.5.6",
"@types/yeoman-generator": "^5.2.14",
"chai": "^5.1.0",
"clean-webpack-plugin": "^4.0.0",
"copy-webpack-plugin": "^11.0.0",
"mocha": "^10.3.0",
"ts-loader": "^9.5.1",
"ts-node": "^10.9.2",
"typescript": "^5.4.2",
"webpack": "^5.89.0",
"webpack-cli": "^5.1.4"
}
}