-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
63 lines (63 loc) · 1.72 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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
{
"name": "delivery-guy",
"version": "7.0.0-alpha2",
"main": "./dist/main.js",
"repository": "[email protected]:WebCodr/delivery-guy.git",
"author": "David <[email protected]>",
"license": "MIT",
"types": "./index.d.ts",
"devDependencies": {
"@types/fetch-mock": "^7.3.2",
"@types/jest": "^25.2.3",
"@types/node": "^14.0.1",
"@types/node-fetch": "^2.5.7",
"fetch-mock": "^9.9.0",
"jest": "^26.0.1",
"lodash": ">=4.17.15",
"node-fetch": "^2.6.0",
"prettier": "^2.0.5",
"rimraf": "^3.0.2",
"rollup": "^2.10.4",
"rollup-plugin-node-resolve": "^5.2.0",
"rollup-plugin-typescript": "^1.0.1",
"rollup-plugin-uglify": "^6.0.4",
"ts-jest": "^26.0.0",
"tslint": "^6.1.2",
"tslint-config-prettier": "^1.18.0",
"tslint-microsoft-contrib": "^6.2.0",
"tsutils": "^3.17.1",
"typescript": "^3.9.2"
},
"scripts": {
"clean": "rimraf coverage build tmp",
"build": "rollup -c rollup.config.js",
"build:watch": "tsc -w -p tsconfig.release.json",
"lint": "tslint -t stylish --project \"tsconfig.json\"",
"test": "jest --coverage",
"test:watch": "jest --watch",
"test:integration": "jest -c jest.config.integration.js",
"typings": "tsc -d --emitDeclarationOnly"
},
"files": [
"dist/**.*",
"README.md",
"CHANGELOG.md"
],
"description": "DeliveryGuy is a wrapper for the Fetch API with included handling of HTTP errors",
"keywords": [
"delivery",
"delivery-guy",
"DeliveryGuy",
"delivery guy",
"fetch",
"fetch wrapper"
],
"bugs": {
"url": "https://github.com/WebCodr/delivery-guy/issues",
"email": "[email protected]"
},
"dependencies": {
"deepmerge": "^4.2.2",
"tslib": "^2.0.0"
}
}