-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
47 lines (47 loc) · 1.02 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": "@shipengine/twitter-bot",
"version": "1.2.2",
"description": "A Twitter bot that answers natural language questions about shipping",
"keywords": [
"shipengine",
"api",
"bot",
"twitter",
"yelp"
],
"author": {
"name": "ShipEngine",
"email": "[email protected]",
"url": "https://shipengine.com"
},
"homepage": "https://shipengine.com",
"repository": {
"type": "git",
"url": "https://github.com/ShipEngine/shipengine-twitter-bot.git"
},
"license": "MIT",
"main": "lib/twitter.js",
"files": [
"lib"
],
"engines": {
"node": ">=8"
},
"engineStrict": true,
"scripts": {
"start": "node lib/twitter.js",
"upgrade": "npm-check -u",
"bump": "bump --tag --push --all",
"release": "npm run upgrade && npm run bump"
},
"dependencies": {
"lodash": "^4.17.11",
"shipengine": "^0.3.1",
"twit": "^2.2.11",
"yelp-fusion": "^2.2.1"
},
"devDependencies": {
"npm-check": "^5.9.0",
"version-bump-prompt": "^5.0.1"
}
}