-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
38 lines (38 loc) · 912 Bytes
/
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
{
"name": "tinder-modern",
"version": "2.0.1",
"description": "Node.js bindings to Tinder API",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"repository": "https://github.com/wasd171/tinder-modern.git",
"author": "Konstantin Nesterov <[email protected]>",
"license": "MIT",
"devDependencies": {
"@types/form-data": "^2.2.0",
"@types/node-fetch": "^1.6.7",
"husky": "^0.14.3",
"lint-staged": "^4.0.2",
"prettier": "^1.5.3",
"rimraf": "^2.6.1",
"tslint": "^5.5.0",
"tslint-config-prettier": "^1.1.0",
"typescript": "^2.4.2"
},
"scripts": {
"clean": "rimraf dist/",
"build": "npm run clean && tsc",
"precommit": "lint-staged"
},
"lint-staged": {
"src/*.ts": [
"tslint --fix",
"prettier --single-quote --tab-width=4 --use-tabs --no-semi --write",
"git add"
]
},
"dependencies": {
"form-data": "^2.2.0",
"node-fetch": "^1.7.1",
"tslib": "^1.7.1"
}
}