-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
42 lines (42 loc) · 1.23 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
{
"name": "@barteh/as-service",
"version": "1.0.33",
"description": "observable data service based on rxjs using axios for conunicate with server via http (XHR). ",
"main": "index.js",
"scripts": {
"test": " npm run build && node ./lib/test",
"build": "npm run lint && babel src -d ./lib && babel index.d.ts -o index.js ",
"up": "npm publish --access public --scope=barteh",
"lint": "./node_modules/.bin/eslint src/**/*.js && echo \"eslint code is ok\""
},
"devDependencies": {
"@babel/cli": "^7.0.0-beta.54",
"@babel/core": "^7.0.0-beta.54",
"@babel/preset-env": "^7.0.0-beta.54",
"@babel/plugin-proposal-class-properties": "^7.0.0-beta.54",
"babel-eslint": "^8.2.6",
"eslint": "^5.2.0",
"eslint-plugin-react": "^7.10.0"
},
"dependencies": {
"axios": "^0.18.0",
"localforage": "^1.7.1",
"rxjs": "^5.5.10"
},
"repository": {
"type": "git",
"url": "git+https://github.com/barteh/btservice.git"
},
"keywords": [
"service",
"injectable-service",
"rx-in-react",
"axios"
],
"author": "Ahad Rafat Talebi",
"license": "MIT",
"bugs": {
"url": "https://github.com/barteh/btservice/issues"
},
"homepage": "https://github.com/barteh/btservice#readme"
}