-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
38 lines (38 loc) · 950 Bytes
/
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
{
"name": "@pheasantplucker/gc-pubsub",
"version": "3.0.0",
"description": "A failables wrapper around Google Cloud's Pubsub",
"main": "./src/pubsub.js",
"scripts": {
"test": "jest --forceExit",
"lint": "esw .eslintrc.js src/ lib/ tests/ -w --fix --ignore-pattern !.eslintrc.js",
"deploy": "./deploy.sh"
},
"keywords": [
"google",
"cloud",
"pubsub",
"messaging",
"failables"
],
"repository": {
"type": "git",
"url": "git+https://github.com/pheasantplucker/gc-pubsub.git"
},
"author": "cgdibble@gmail.com",
"license": "ISC",
"devDependencies": {
"eslint": "^4.17.0",
"eslint-plugin-jest": "^21.9.0",
"eslint-plugin-prettier": "^2.6.0",
"eslint-watch": "^3.1.3",
"jest": "^22.4.3",
"prettier": "^1.7.4"
},
"dependencies": {
"@google-cloud/pubsub": "^0.18.0",
"@pheasantplucker/failables": "^2.0.3",
"ramda": "^0.25.0",
"uuid": "^3.2.1"
}
}