-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 979 Bytes
/
package.json
File metadata and controls
37 lines (37 loc) · 979 Bytes
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
{
"name": "tinderous",
"version": "0.1.2",
"description": "An attempt to automate tinder, basic bot and some extra features",
"author": "Matej Drolc <matej.drolc@pingec.si>",
"homepage": "https://github.com/pingec/tinderous",
"repository": {
"type": "git",
"url": "https://github.com/pingec/tinderous.git"
},
"bugs": {
"url": "https://github.com/pingec/tinderous/issues",
"email": "matej.drolc@pingec.si"
},
"main": "./bin/tinderBotAsync.js",
"scripts": {
"test": "\"echo \\\"Error: no test specified\\\" && exit 1\"",
"prepublish": "npm run compile",
"compile": "node ./node_modules/typescript/lib/tsc.js -p .",
"start": "node ./bin/start.js"
},
"keywords": [
"Tinder",
"bot",
"automation"
],
"license": "MIT",
"man": "./README.md",
"dependencies": {
"bluebird": "^3.4.0",
"selenium-webdriver": "^2.53.2",
"tinder": "^1.19.0"
},
"devDependencies": {
"typescript": "^1.8.10"
}
}