-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 1.06 KB
/
package.json
File metadata and controls
39 lines (39 loc) · 1.06 KB
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
{
"name": "axios-observable-request",
"description": "Util to use Axios as RxJs Observer.",
"version": "1.0.5",
"license": "MIT",
"main": "lib/index.js",
"repository": {
"type": "git",
"url": "https://github.com/DylanMerigaud/axios-observable-request.git"
},
"bugs": "https://github.com/DylanMerigaud/axios-observable-request/issues",
"keywords": [
"Axios",
"RxJs",
"Observer",
"Util",
"AxiosObservableRequest"
],
"author": "DylanMerigaud <dylanmerigaud@gmail.com>",
"contributors": [],
"scripts": {
"build": "babel src -d lib",
"start": "cross-env-shell \"$npm_execpath run build -- -w\"",
"example:default": "node ./examples/default.js",
"example:custom": "node ./examples/custom.js",
"prepare": "install-self-peers -- --ignore-scripts"
},
"peerDependencies": {
"axios": "^0.19.0",
"rxjs": "^6.5.2"
},
"devDependencies": {
"@babel/cli": "^7.4.4",
"@babel/core": "^7.4.5",
"@babel/preset-env": "^7.4.5",
"@team-griffin/install-self-peers": "^1.1.1",
"cross-env": "^5.2.0"
}
}