-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
76 lines (76 loc) · 1.74 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
71
72
73
74
75
76
{
"name": "redel",
"version": "1.0.0",
"main": "dist/index.js",
"license": "MIT",
"description": "Promise based HTTP client for the browser and node.js",
"scripts": {
"build": "ncp ./src ./dist --stopOnErr",
"prepublish": "yarn run test && yarn run eslint:src && yarn run eslint:test && yarn run build",
"test": "ALLOW_LOG=false mocha --recursive ./test",
"covarge:html": "nyc --r=html mocha --recursive ./test",
"covarge": "nyc mocha --recursive ./test",
"covarge:all": "nyc mocha --recursive ./test && nyc report --reporter=text-lcov | coveralls",
"eslint:src": "eslint src/",
"eslint:test": "eslint test/"
},
"repository": {
"type": "git",
"url": "https://github.com/omriLugasi/Redel"
},
"keywords": [
"xhr",
"http",
"ajax",
"promise",
"node",
"axios",
"middleware",
"plugins",
"plugin",
"middlewares",
"plugins",
"interceptors",
"axios instance",
"cancel",
"cancelToken",
"pending",
"log",
"XHR logs"
],
"author": "Omri Luggasi",
"dependencies": {
"axios": "0.19.0",
"qs": "6.9.0",
"url": "^0.11.0",
"uuid": "3.3.3"
},
"devDependencies": {
"body-parser": "^1.19.0",
"chai": "^4.2.0",
"coveralls": "^3.0.7",
"eslint": "^6.5.1",
"eslint-config-airbnb-base": "^14.0.0",
"eslint-plugin-import": "^2.18.2",
"express": "^4.17.1",
"form-data": "^2.5.1",
"husky": "^3.0.7",
"mocha": "^6.2.1",
"ncp": "^2.0.0",
"nyc": "^14.1.1",
"sinon": "^7.5.0"
},
"husky": {
"hooks": {
"pre-push": "yarn test && yarn eslint:src && yarn eslint:test"
}
},
"nyc": {
"exclude": [
"server",
"test",
"src/services/logger",
"dist"
]
}
}