-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
61 lines (61 loc) · 1.78 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
{
"name": "@bbfe/data-provider",
"version": "0.0.5",
"description": "request manager with AOP interceptors and debouce abilities",
"keywords": [
"ajax",
"aop",
"interceptors",
"debounce"
],
"main": "./lib/index.js",
"files": [
"lib",
"src",
"test"
],
"scripts": {
"test": "node ./test/index.js",
"build": "rm -rf lib && babel src -d lib -s inline",
"dev": "npm run build && webpack-dev-server --hot --inline",
"pretty": "prettier --no-config --write '{src,examples}/**/*.js'",
"prepublish": "npm run pretty"
},
"repository": {
"type": "git",
"url": "git+https://github.com/weimengxi/data-provider.git"
},
"author": "weimengxi",
"license": "ISC",
"bugs": {
"url": "https://github.com/weimengxi/data-provider/issues"
},
"homepage": "https://github.com/weimengxi/data-provider#readme",
"devDependencies": {
"axios-mock-adapter": "^1.7.1",
"axios-response-logger": "^0.1.0",
"babel-cli": "6.26.0",
"babel-loader": "^7.1.2",
"babel-plugin-add-module-exports": "^0.2.1",
"babel-plugin-transform-class-properties": "6.24.1",
"babel-plugin-transform-es2015-modules-umd": "^6.24.1",
"babel-plugin-transform-es3-member-expression-literals": "6.22.0",
"babel-plugin-transform-es3-property-literals": "6.22.0",
"babel-plugin-transform-runtime": "6.23.0",
"babel-preset-env": "1.6.0",
"babel-preset-stage-2": "6.24.1",
"eslint": "^4.7.0",
"eslint-config-standard": "^10.2.1",
"eslint-plugin-standard": "^3.0.1",
"prettier-miscellaneous": "^1.5.3",
"webpack": "^3.5.5",
"webpack-dev-server": "^2.7.1"
},
"dependencies": {
"axios": "^0.15.3",
"babel-runtime": "6.26.0",
"events": "^1.1.1",
"jquery-param": "0.2.0",
"querystring-es3": "^0.2.1"
}
}