-
Notifications
You must be signed in to change notification settings - Fork 31
/
Copy pathpackage.json
70 lines (70 loc) · 1.54 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
64
65
66
67
68
69
70
{
"name": "@lifeomic/axios-fetch",
"version": "3.1.0",
"description": "A WebAPI Fetch implementation backed by an Axios client",
"main": "src/index.js",
"types": "src/index.d.ts",
"files": [
"src/**/*"
],
"scripts": {
"test": "nyc ava",
"lint": "eslint . --ext .js,.ts -f codeframe",
"postlint": "yarn tsc --noEmit",
"pretest": "yarn lint",
"coverage": "nyc report --reporter=text-lcov > ./.nyc_output/lcov.info",
"prepublishOnly": "yarn tsc"
},
"repository": {
"type": "git",
"url": "https://github.com/lifeomic/axios-fetch.git"
},
"engines": {
"node": ">=12"
},
"keywords": [
"fetch",
"axios"
],
"ava": {
"extensions": [
"ts"
],
"require": [
"ts-node/register"
]
},
"author": "LifeOmic <development@lifeomic.com>",
"license": "MIT",
"devDependencies": {
"@lifeomic/eslint-plugin-node": "^2.0.1",
"@types/sinon": "^10.0.4",
"@typescript-eslint/eslint-plugin": "^5.1.0",
"@typescript-eslint/parser": "^5.1.0",
"ava": "^3.15.0",
"axios": "^1.6.0",
"coveralls": "^3.1.1",
"eslint": "^7.32.0",
"form-data": "^4.0.0",
"nock": "^13.1.4",
"node-fetch": "^2.6.7",
"nyc": "^15.1.0",
"sinon": "^11.1.2",
"ts-node": "^10.3.0",
"typescript": "^4.4.4"
},
"dependencies": {
"@types/node-fetch": "^2.5.10"
},
"nyc": {
"check-coverage": true,
"per-file": true,
"lines": 100,
"statements": 100,
"functions": 100,
"branches": 100
},
"publishConfig": {
"access": "public"
}
}