UNPKG

1.6 kBJSONView Raw
1{
2 "name": "pkg-fetch",
3 "version": "3.2.4",
4 "description": "Compiles and stores base binaries for pkg",
5 "main": "lib-es5/index.js",
6 "license": "MIT",
7 "repository": "vercel/pkg-fetch",
8 "bin": {
9 "pkg-fetch": "lib-es5/bin.js"
10 },
11 "files": [
12 "lib-es5/*.js",
13 "lib-es5/*.ts",
14 "patches/*"
15 ],
16 "dependencies": {
17 "chalk": "^4.1.0",
18 "fs-extra": "^9.1.0",
19 "https-proxy-agent": "^5.0.0",
20 "node-fetch": "^2.6.1",
21 "progress": "^2.0.3",
22 "semver": "^7.3.5",
23 "yargs": "^16.2.0"
24 },
25 "devDependencies": {
26 "@types/fs-extra": "^9.0.9",
27 "@types/node": "^14.14.37",
28 "@types/node-fetch": "^2.5.10",
29 "@types/progress": "^2.0.3",
30 "@types/semver": "^7.3.4",
31 "@types/yargs": "^16.0.1",
32 "@typescript-eslint/eslint-plugin": "^4.19.0",
33 "@typescript-eslint/parser": "^4.19.0",
34 "eslint": "^7.22.0",
35 "eslint-config-airbnb-base": "^14.2.1",
36 "eslint-config-prettier": "^8.1.0",
37 "eslint-import-resolver-typescript": "^2.4.0",
38 "eslint-plugin-import": "^2.22.1",
39 "lint-staged": ">=10",
40 "prettier": "^2.2.1",
41 "rimraf": "^3.0.2",
42 "simple-git-hooks": ">=2.0.3",
43 "typescript": "^4.2.3"
44 },
45 "scripts": {
46 "build": "rimraf lib-es5 && tsc --build lib",
47 "bin": "node lib-es5/bin.js",
48 "lint": "eslint lib",
49 "prepare": "npm run build",
50 "prepublishOnly": "npm run lint",
51 "start": "node lib-es5/bin.js"
52 },
53 "prettier": {
54 "singleQuote": true
55 },
56 "simple-git-hooks": {
57 "pre-commit": "npx lint-staged"
58 },
59 "lint-staged": {
60 "*.{js,css,md}": "prettier --write"
61 }
62}