-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
47 lines (47 loc) · 1.12 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
{
"name": "ml-image-caption-bot",
"version": "0.1.0",
"description": "Takes a new post from Instagram, generates an image caption for it, and posts it to Twitter and Facebook.",
"dependencies": {
"async": "^2.6.0",
"aws-sdk": "^2.185.0",
"dotenv": "^4.0.0",
"request": "^2.83.0",
"twit": "^2.2.9"
},
"devDependencies": {
"eslint": "^4.15.0",
"eslint-config-prettier": "^2.9.0",
"eslint-config-standard": "^11.0.0-beta.0",
"eslint-plugin-import": "^2.8.0",
"eslint-plugin-jest": "^21.7.0",
"eslint-plugin-node": "^5.2.1",
"eslint-plugin-promise": "^3.6.0",
"eslint-plugin-standard": "^3.0.1",
"jest": "^22.1.4",
"prettier": "^1.10.2"
},
"scripts": {
"test": "jest --watchAll"
},
"keywords": [
"machine-learning",
"conginative-services",
"image-captioning"
],
"author": "Matt Morgis",
"license": "MIT",
"prettier": {
"bracketSpacing": false,
"jsonEnable": [
"json"
],
"javascriptEnable": [
"javascript",
"javascriptreact"
],
"singleQuote": true,
"trailingComma": "es5",
"tabWidth": 2
}
}