-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
75 lines (75 loc) · 1.85 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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
{
"name": "gcp-object-storage",
"version": "0.3.1",
"description": "Use Google Cloud Storage as a JSON object storage. For use with Cloud Functions.",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "npx tsc",
"coveralls": "npm run test:cov && cat ./coverage/lcov.info | coveralls",
"format": "prettier --write \"src/**/*.ts\" \"src/**/*.js\" \"test/**/*.ts\" \"test/**/*.js\"",
"lint": "tslint -p tsconfig.json",
"test": "jest",
"test:watch": "jest --watch",
"test:cov": "jest --coverage"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Achneoder/clobs.git"
},
"keywords": [
"GCP",
"bucket",
"cloud",
"storage",
"JSON"
],
"author": "Maurice Bernard <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/Achneoder/clobs/issues"
},
"homepage": "https://github.com/Achneoder/clobs#readme",
"devDependencies": {
"@semantic-release/changelog": "^5.0.1",
"@semantic-release/git": "^9.0.0",
"@types/jest": "^24.9.1",
"@types/node": "^13.13.21",
"coveralls": "^3.1.0",
"husky": "^4.3.0",
"jest": "^25.5.4",
"prettier": "^1.19.1",
"pretty-quick": "^2.0.2",
"semantic-release": "^19.0.3",
"ts-jest": "^25.5.1",
"tslint": "^5.20.1",
"tslint-config-prettier": "^1.18.0",
"typescript": "3.8.3"
},
"dependencies": {
"@google-cloud/storage": "^5.3.0"
},
"jest": {
"moduleFileExtensions": [
"js",
"json",
"ts"
],
"rootDir": ".",
"testRegex": ".spec.ts$",
"transform": {
"^.+\\.(t|j)s$": "ts-jest"
},
"coverageDirectory": "./coverage",
"testEnvironment": "node",
"roots": [
"<rootDir>/src/",
"<rootDir>/test/"
]
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged"
}
}
}