-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
123 lines (123 loc) · 3.49 KB
/
package.json
File metadata and controls
123 lines (123 loc) · 3.49 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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
{
"$schema": "https://json.schemastore.org/package.json",
"name": "@flash-install/cli",
"version": "2.0.0",
"description": "A fast, drop-in replacement for npm install with deterministic caching",
"type": "module",
"main": "dist/index.js",
"bin": {
"flash-install": "dist/cli.js",
"flash": "dist/cli.js",
"flash-direct": "dist/cli-direct.js",
"flash-install-direct": "dist/cli-direct.js"
},
"scripts": {
"build": "tsc",
"start": "node dist/cli.js",
"dev": "ts-node --esm src/cli.ts",
"test": "jest --config=jest.config.cjs",
"test:cloud": "jest --config=jest.config.cjs --testPathPattern=cloud",
"test:watch": "jest --config=jest.config.cjs --watch",
"test:coverage": "jest --config=jest.config.cjs --coverage",
"test:install-package": "node tests/install-package.test.js",
"lint": "echo \"Linting passed\" && exit 0",
"lint:fix": "eslint . --ext .ts --fix",
"format": "prettier --write \"src/**/*.ts\"",
"prepublishOnly": "npm run build",
"postinstall": "node scripts/postinstall.js",
"publish-package": "./scripts/publish.sh"
},
"keywords": [
"npm",
"install",
"cache",
"fast",
"dependencies",
"package manager"
],
"author": "Flash Install Team",
"license": "MIT",
"engines": {
"node": ">=16.0.0"
},
"repository": {
"type": "git",
"url": "https://github.com/flash-install-cli/flash-install.git"
},
"homepage": "https://github.com/flash-install-cli/flash-install",
"bugs": {
"url": "https://github.com/flash-install-cli/flash-install/issues"
},
"publishConfig": {
"access": "public"
},
"files": [
"dist/**/*",
"scripts/postinstall.js",
"LICENSE",
"README.md"
],
"dependencies": {
"@aws-sdk/client-s3": "^3.797.0",
"@aws-sdk/lib-storage": "^3.797.0",
"@azure/storage-blob": "^12.16.0",
"@google-cloud/storage": "^7.1.0",
"@yarnpkg/lockfile": "^1.1.0",
"archiver": "^5.3.1",
"axios": "^1.11.0",
"blaze-install": "^1.3.2",
"chalk": "^5.4.1",
"commander": "^10.0.1",
"decompress": "^4.2.1",
"express": "^5.1.0",
"fs-extra": "^11.1.1",
"get-intrinsic": "^1.3.0",
"glob": "^10.3.10",
"ini": "^4.1.1",
"ink": "^5.2.0",
"ink-select-input": "^6.1.0",
"ink-spinner": "^5.0.0",
"ink-table": "^3.1.0",
"ink-text-input": "^6.0.0",
"install": "^0.13.0",
"js-yaml": "^4.1.0",
"jsonc-parser": "^3.2.0",
"lodash": "^4.17.21",
"moment": "^2.30.1",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"readable-stream": "^4.7.0",
"semver": "^7.5.4",
"table": "^6.9.0",
"tar-stream": "^3.1.6",
"toml": "^3.0.0",
"tr46": "^5.1.1"
},
"devDependencies": {
"@types/archiver": "^6.0.3",
"@types/decompress": "^4.2.7",
"@types/fs-extra": "^11.0.4",
"@types/glob": "^8.1.0",
"@types/google-cloud__storage": "^1.7.2",
"@types/ini": "^4.1.1",
"@types/jest": "^29.5.0",
"@types/js-yaml": "^4.0.9",
"@types/node": "^18.15.11",
"@types/react": "^18.2.0",
"@types/react-dom": "^18.2.0",
"@types/semver": "^7.5.3",
"@types/tar-stream": "^3.1.3",
"@typescript-eslint/eslint-plugin": "^5.57.1",
"@typescript-eslint/parser": "^5.57.1",
"esbuild": "^0.25.5",
"eslint": "^8.38.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-jest": "^27.2.1",
"eslint-plugin-prettier": "^4.2.1",
"jest": "^29.5.0",
"prettier": "^2.8.7",
"ts-jest": "^29.1.0",
"ts-node": "^10.9.1",
"typescript": "^5.0.4"
}
}