-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
50 lines (50 loc) · 1.35 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": "@hashicorp/js-releases",
"version": "1.7.3",
"description": "Download packages from releases.hashicorp.com",
"main": "./out/index.js",
"types": "./out/index.d.ts",
"scripts": {
"compile": "tsc -b",
"watch": "tsc -b -w",
"test": "jest",
"prepare": "npm run-script test && npm run-script compile",
"prettier": "prettier \"**/*.+(js|json|ts)\"",
"format": "npm run prettier -- --write",
"check-format": "npm run prettier -- --check",
"lint": "eslint"
},
"repository": {
"type": "git",
"url": "git+https://github.com/hashicorp/js-releases.git"
},
"author": "HashiCorp",
"license": "MPL-2.0",
"bugs": {
"url": "https://github.com/hashicorp/js-releases/issues"
},
"homepage": "https://github.com/hashicorp/js-releases#readme",
"dependencies": {
"axios": "^1.7.4",
"https-proxy-agent": "^5.0.1",
"openpgp": "^5.5.0",
"semver": "^7.3.5",
"yauzl": "^2.10.0"
},
"devDependencies": {
"@eslint/js": "^9.15.0",
"@types/jest": "^28.1.4",
"@types/node": "^18.17.15",
"@types/semver": "^7.3.1",
"@types/yauzl": "^2.9.2",
"eslint": "^9.15.0",
"eslint-config-prettier": "^9.1.0",
"globals": "^15.12.0",
"jest": "^28.1.2",
"prettier": "^2.5.1",
"tempy": "^1.0.1",
"ts-jest": "^28.0.5",
"ts-node": "^9.1.1",
"typescript": "^4.2.4"
}
}