-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
52 lines (52 loc) · 1.64 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
{
"name": "nodejs-helpers",
"version": "1.1.9",
"description": "A set of classes to simplify interaction with Google Apis.",
"repository": "https://github.com/jeremylorino/nodejs-helpers.git",
"main": "./build/index",
"typings": "./build/index.d.ts",
"scripts": {
"test": "NODE_ENV=test node test/index.js",
"pretest": "npm run clean && npm run check && npm run build",
"build-pack": "webpack --config webpack.config.js",
"build": "./node_modules/.bin/tsc -p ./tsconfig.json",
"check": "./node_modules/.bin/tslint -t codeFrame -p tsconfig.json -c tslint.json",
"clean": "rimraf ./build",
"preversion": "npm test",
"prerelease": "npm version patch",
"release": "npm publish -tag latest --access public",
"postrelease": "git push"
},
"keywords": [
"logger",
"message transport",
"storage provider",
"google cloud storage",
"google pubsub",
"stackdriver logging"
],
"author": "Jeremy Lorino <[email protected]>",
"license": "Apache-2.0",
"dependencies": {
"@google-cloud/logging-winston": "^0.10.0",
"@google-cloud/pubsub": "^0.18.0",
"@google-cloud/storage": "^1.7.0",
"lodash": "^4.17.10",
"mime-types": "^2.1.18",
"winston": "^2.4.3"
},
"devDependencies": {
"@types/google-cloud__pubsub": "^0.18.0",
"@types/google-cloud__storage": "^1.1.7",
"@types/lodash": "^4.14.110",
"@types/mime-types": "^2.1.0",
"@types/node": "^9.6.17",
"@types/winston": "^2.3.9",
"gts": "^0.5.4",
"rimraf": "^2.6.2",
"ts-loader": "^3.3.1",
"typescript": "^2.8.3",
"webpack": "^3.12.0",
"webpack-node-externals": "^1.6.0"
}
}