-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
40 lines (40 loc) · 1.09 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
{
"name": "tbest-fetch-client",
"version": "0.1.2",
"description": "An opinionated REST API client",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/TimBest/fetch-client.git"
},
"author": "Tim Best [email protected]",
"license": "MIT",
"private": false,
"scripts": {
"build": "yarn install && rm -rf dist && rollup -c",
"lint": "yarn install && tslint --config tslint.json src/**/*.ts{,x}",
"test": "jest"
},
"devDependencies": {
"@babel/core": "^7.5.5",
"@babel/preset-env": "^7.5.5",
"@babel/preset-typescript": "^7.3.3",
"@types/jest": "^24.0.17",
"babel-jest": "^24.8.0",
"jest": "^24.8.0",
"rollup-plugin-typescript2": "^0.22.1",
"tslint": "^5.18.0",
"typescript": "^3.5.3"
},
"dependencies": {
"es6-error": "^4.1.1",
"global": "^4.4.0",
"query-string": "^6.8.2",
"rollup": "^1.20.3"
},
"bugs": {
"url": "https://github.com/TimBest/fetch-client/issues"
},
"homepage": "https://github.com/TimBest/fetch-client#readme"
}