-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
57 lines (57 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
51
52
53
54
55
56
57
{
"name": "mock-gcs",
"version": "2.1.0",
"description": "Mock implementation of the Google Cloud Storage SDK.",
"url": "https://github.com/aldipermanaetikaputra/mock-gcs",
"keywords": [
"gcs",
"cloud-storage",
"storage",
"sdk",
"mock"
],
"author": "Aldi Permana Etika Putra <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/aldipermanaetikaputra/mock-gcs/issues"
},
"files": [
"lib"
],
"main": "lib/index.js",
"types": "lib/index.d.ts",
"scripts": {
"build": "tsc -p tsconfig.build.json",
"test": "jest",
"lint": "eslint . --ext .ts",
"version": "yarn build",
"prepare": "yarn build"
},
"repository": {
"type": "git",
"url": "https://github.com/aldipermanaetikaputra/mock-gcs.git"
},
"publishConfig": {
"registry": "https://registry.npmjs.org/"
},
"dependencies": {
"stream-buffers": "^3.0.2"
},
"devDependencies": {
"@google-cloud/storage": "^7.10.2",
"@types/jest": "^29.5.0",
"@types/minimist": "^1.2.2",
"@types/stream-buffers": "^3.0.4",
"@types/tmp": "^0.2.3",
"@typescript-eslint/eslint-plugin": "^5.57.1",
"@typescript-eslint/parser": "^5.57.1",
"eslint": "^8.37.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-prettier": "^4.2.1",
"jest": "^29.5.0",
"prettier": "^2.8.7",
"tmp": "^0.2.1",
"ts-jest": "^29.0.5",
"typescript": "4.9.5"
}
}