-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
95 lines (95 loc) · 2.33 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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
{
"name": "altruist",
"version": "1.1.3",
"description": "Altruist lets you share your content with others",
"scripts": {
"dev": "./node_modules/.bin/nodemon index.js",
"start": "node index.js",
"debug": "nodemon --inspect index.js",
"bin": "./bin/altruist",
"test": "ava --serial --verbose"
},
"main": "src/app.js",
"bin": {
"altruist": "bin/altruist"
},
"ava": {
"files": [
"tests/ava/*.js"
]
},
"repository":{
"type": "git",
"url": "git+https://github.com/soixantecircuits/altruist.git"
},
"dependencies": {
"@slack/client": "^3.7.0",
"body-parser": "^1.15.2",
"commander": "^2.9.0",
"cookie-parser": "^1.4.3",
"cors": "^2.8.1",
"deep-equal": "^1.0.1",
"dropbox": "^2.5.0",
"execa": "^0.6.0",
"express": "^4.14.0",
"express-session": "^1.14.2",
"fb": "^1.1.1",
"form-data": "^2.1.2",
"fs-extra": "^3.0.1",
"ftp": "^0.3.10",
"googleapis": "^15.0.0",
"instagram-private-api": "^0.5.2",
"mailchimp-api-v3": "1.6.0",
"mandrill-api": "^1.0.45",
"media-helper": "^1.1.1",
"mime": "^1.3.4",
"mmmagic": "^0.4.5",
"mocha": "^3.2.0",
"morgan": "^1.7.0",
"multer": "^1.2.0",
"nconf": "^0.8.4",
"node-localstorage": "^1.3.0",
"node-mailjet": "^3.0.6",
"node-slack-upload": "^1.2.1",
"nodemailer": "^2.6.4",
"passport": "^0.3.2",
"passport-dropbox-oauth2": "^1.1.0",
"passport-facebook": "^2.1.1",
"passport-google-oauth20": "^1.0.0",
"request": "^2.79.0",
"scp2": "^0.5.0",
"spacebro-client": "0.4.0-beta.5",
"ssh2": "^0.5.4",
"standard-settings": "^1.1.7",
"twit": "^2.2.5"
},
"devDependencies": {
"ava": "^0.19.1",
"nodemon": "^1.11.0"
},
"keywords": [
"API",
"REST",
"share",
"tool"
],
"author": {
"name": "Soixante circuits",
"email": "contact@soixantecircuits.fr",
"url": "http://soixantecircuits.fr/"
},
"contributors": [
"hugohil <hugo@soixantecircuits.fr>",
"gabrielstuff <gabriel@soixantecircuits.fr>",
"yael <yael@soixantecircuits.fr>",
"louis <louis@soixantecircuits.fr>"
],
"bugs": {
"url": "https://github.com/soixantecircuits/altruist/issues"
},
"engines": {
"node": ">= 6.0.0"
},
"homepage": "https://github.com/soixantecircuits/altruist#readme",
"license": "MIT"
}