-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
48 lines (48 loc) · 1.16 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": "@foxify/rest-client",
"version": "1.0.0",
"description": "Foxify rest client",
"author": "Ardalan Amini <[email protected]> (https://github.com/ardalanamini)",
"license": "MIT",
"homepage": "https://github.com/foxifyjs/rest-client#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/foxifyjs/rest-client.git"
},
"bugs": {
"url": "https://github.com/foxifyjs/rest-client/issues"
},
"keywords": [
"foxify",
"rest",
"api",
"client"
],
"main": "dist/index.js",
"files": [
"dist"
],
"scripts": {
"build": "tsc",
"prepublishOnly": "npm run lint && npm run build",
"lint": "tslint -p tsconfig.json -c tslint.json --exclude '**/*.d.ts'"
},
"peerDependencies": {
"@types/axios": "^0.14.0",
"@types/qs": "^6.5.1",
"axios": "^0.18.0",
"prototyped.js": "^0.21.0",
"qs": "^6.6.0"
},
"devDependencies": {
"@types/axios": "^0.14.0",
"@types/qs": "^6.5.1",
"axios": "^0.18.0",
"prototyped.js": "^0.21.0",
"qs": "^6.6.0",
"ts-jest": "^23.10.5",
"tslint": "^5.12.0",
"tslint-config-airbnb": "^5.11.1",
"typescript": "^3.2.2"
}
}