forked from me-box/driver-twitter
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.72 KB
/
package.json
File metadata and controls
51 lines (51 loc) · 1.72 KB
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
{
"name": "driver-twitter",
"version": "1.0.0",
"description": "A Databox driver to stream data from twitter",
"config": {
"registry": "localhost:5000"
},
"scripts": {
"test": "./node_modules/mocha/bin/mocha",
"start": "node ./src/main.js",
"build": "docker build -t databox/driver-twitter .",
"deploy": "docker tag databox/driver-twitter $npm_package_config_registry/driver-twitter && docker push $npm_package_config_registry/driver-twitter",
"build-arm": "docker build -f Dockerfile-arm -t databox/driver-twitter-arm .",
"deploy-arm": "docker tag databox/driver-twitter-arm $npm_package_config_registry/driver-twitter-arm && docker push $npm_package_config_registry/driver-twitter-arm",
"clean": "node ./node_modules/modclean/bin/modclean.js -p ./node_modules/ -r",
"getshell": "docker exec -i -t driver-twitter /bin/bash",
"kill": "docker kill driver-twitter",
"attach": "docker attach driver-twitter",
"shell": "docker run -i -t databox/driver-twitter /bin/bash",
"local": "docker run -i -t databox/driver-twitter"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Toshbrown/driver-twitter.git"
},
"keywords": [
"Databox",
"twitter",
"stream"
],
"author": "Anthony Brown",
"license": "MIT",
"bugs": {
"url": "https://github.com/Toshbrown/driver-twitter/issues"
},
"homepage": "https://github.com/Toshbrown/driver-twitter#readme",
"dependencies": {
"body-parser": "^1.18.3",
"express": "^4.16.3",
"modclean": "^2.1.2",
"node-databox": "^0.9.0",
"oauth": "^0.9.15",
"pug": "^2.0.3",
"twit": "^2.2.10"
},
"devDependencies": {
"assert": "^1.4.1",
"mocha": "^5.2.0",
"supertest": "^3.1.0"
}
}