-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathpackage.json
48 lines (48 loc) · 1.32 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
{
"name": "tinderauth",
"version": "2.0.3",
"description": "Get your credentials for the Tinder API programatically",
"main": "./dist/index.js",
"scripts": {
"build": "babel src --out-dir dist && babel bin-src --out-dir bin && mv bin/tinderauth.js bin/tinderauth",
"test": "standard && mocha --compilers js:babel-register --bail",
"prepublish": "npm run build"
},
"author": "Anthony Mayfield <[email protected]> (http://www.anthonymayfield.com/)",
"contributors": [
{
"name": "Gergo Barcza",
"email": "[email protected]"
}
],
"license": "ISC",
"repository": "tinderjs/tinderauth",
"dependencies": {
"axios": "^0.9.1",
"babel-plugin-transform-runtime": "^6.6.0",
"babel-runtime": "^6.6.1",
"bluebird": "^3.4.6",
"debug": "^2.2.0",
"inquirer": "^1.1.2",
"nock": "git+https://github.com/barczaG/nock",
"tinder": "^1.19.0",
"underscore": "^1.8.3",
"zombie": "^4.2.1"
},
"devDependencies": {
"babel-cli": "^6.6.5",
"babel-eslint": "^6.0.3",
"babel-plugin-add-module-exports": "^0.2.1",
"babel-preset-es2015": "^6.6.0",
"babel-preset-stage-3": "^6.5.0",
"chai": "^3.5.0",
"standard": "^6.0.8"
},
"standard": {
"parser": "babel-eslint",
"ignore": "dist/"
},
"bin": {
"tinderauth": "./bin/tinderauth"
}
}