-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
51 lines (51 loc) · 1.36 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
{
"name": "reaxios",
"version": "0.0.3",
"description": "Axios ajax library wrapped in RxJs observables, The popular kids are doing it.",
"private": false,
"main": "dist/reAxios.min.js",
"scripts": {
"build-prod": "webpack --config=./script/webpack.config.js --env.production",
"build-dev": "webpack --config=./script/webpack.config.js ",
"test": "jest ./test/reAxios.spec.js --coverage"
},
"repository": "git+https://github.com/SandeepVattapparambil/reaxios.git",
"keywords": [
"reAxios",
"Axios",
"Ajax",
"RxJs",
"Observables",
"Javascript",
"Nodejs",
"Wrapper"
],
"author": "Sandeep Vattapparambil",
"license": "MIT",
"bugs": {
"url": "https://github.com/SandeepVattapparambil/reaxios/issues"
},
"jest": {
"testEnvironment": "node",
"coverageDirectory": "./coverage/",
"collectCoverage": true
},
"homepage": "https://github.com/SandeepVattapparambil/reaxios#readme",
"devDependencies": {
"babel-core": "^6.26.3",
"babel-eslint": "^8.2.6",
"babel-loader": "^7.1.5",
"babel-preset-env": "^1.7.0",
"babel-preset-es2015": "^6.24.1",
"babel-register": "^6.26.0",
"jest": "^23.5.0",
"nock": "^9.6.0",
"webpack": "^4.16.5",
"webpack-cli": "^3.1.0",
"webpack-node-externals": "^1.7.2"
},
"dependencies": {
"axios": "^0.18.0",
"rxjs": "^6.2.2"
}
}