-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
57 lines (57 loc) · 2.08 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": "abl-connect",
"version": "0.2.9",
"license": "MIT",
"title": "ABL - connect",
"description": "connect abl projects to 3rd party api",
"homepage": "http://adventurebucketlist.com/",
"keywords": [],
"author": {
"name": "TrejGun",
"email": "[email protected]",
"url": "http://mabp.kiev.ua/"
},
"repository": {
"type": "git",
"url": "https://github.com/bucket-list/connect.git"
},
"bugs": {
"url": "https://github.com/bucket-list/connect/issues"
},
"dependencies": {
"abl-utils": "git+ssh://github.com/bucket-list/utils.git#v0.5.3",
"core-decorators": "0.12.0",
"debug": "2.2.0",
"googleapis": "4.0.0",
"mime": "1.3.4",
"moment-config-trejgun": "git://github.com/TrejGun/moment-config-trejgun.git#v0.0.4",
"nodemailer": "2.3.0",
"nodemailer-mailgun-transport": "1.0.1",
"q": "1.4.1",
"rrule": "2.1.0",
"stripe": "4.5.0",
"twilio": "3.1.0-edge"
},
"devDependencies": {
"abl-constants": "git+ssh://github.com/TrejGun/constants.git#v0.2.2",
"async": "2.0.0-rc.2",
"babel-config-trejgun": "git://github.com/TrejGun/babel-config-trejgun.git#v0.0.8",
"eslint-config-trejgun": "git://github.com/TrejGun/eslint-config-trejgun.git#v0.0.3",
"istanbul": "^1.0.0-alpha",
"mocha": "2.4.5",
"power-assert": "1.3.1"
},
"engines": {
"node": ">=5.0.0"
},
"scripts": {
"postinstall": "babel -d ./build ./source",
"pull": "git checkout master && git pull origin master",
"push": "git push origin master --tags && exit 0 && npm publish",
"commit": "git commit -a -m ${1}",
"release": "release () { npm run pull && if [ -z $1 ]; then npm version patch; else npm version $1; fi && npm run push; }; release",
"lint": "eslint source/* test/* --quiet --fix",
"test": "NODE_ENV=${NODE_ENV:=test} ABL_DEBUG=${ABL_DEBUG:=true} env $(cat .env | xargs) babel-node node_modules/.bin/_mocha",
"coverage": "NODE_ENV=${NODE_ENV:=test} env $(cat .env | xargs) babel-node node_modules/istanbul/lib/cli cover --report text --report html node_modules/.bin/_mocha test/API/google.js"
}
}