-
Notifications
You must be signed in to change notification settings - Fork 59
/
package.json
56 lines (56 loc) · 1.53 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
{
"name": "multer-google-storage",
"version": "0.0.0-development",
"description": "Streaming multer storage engine for Google Cloud Storage",
"main": "lib/index.js",
"typings": "lib/index",
"scripts": {
"test": "npm run build && nyc --reporter=html --reporter=text mocha lib/index.test.js",
"build": "npm run clean && tsc",
"clean": "rimraf lib",
"precommit": "npm test",
"prepush": "npm test",
"semantic-release": "semantic-release pre && npm publish && semantic-release post",
"commit": "git-cz"
},
"keywords": [
"multer",
"node",
"gcs",
"cloud",
"storage"
],
"author": "Andrew de Rozario <[email protected]> (https://justintimecoder.com/)",
"license": "MIT",
"dependencies": {
"@google-cloud/storage": "^1.1.1",
"@types/express": "^4.16.1",
"@types/google-cloud__storage": "^1.1.1",
"multer": "^1.3.0",
"uuid": "^3.1.0"
},
"devDependencies": {
"@types/chai": "^4.0.1",
"@types/mocha": "^2.2.41",
"@types/mockery": "^1.4.29",
"@types/multer": "^1.3.2",
"@types/node": "^8.0.7",
"chai": "^4.0.2",
"commitizen": "^2.9.6",
"cz-conventional-changelog": "^2.0.0",
"husky": "^0.14.3",
"mocha": "^3.4.2",
"mockery": "^2.1.0",
"nyc": "^11.0.3",
"rimraf": "^2.6.1",
"semantic-release": "^6.3.6",
"typescript": "^2.4.1"
},
"repository": {
"type": "git",
"url": "https://github.com/ARozar/multer-google-storage.git"
},
"czConfig": {
"path": "node_modules/cz-conventional-changelog"
}
}