forked from wendux/fly
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
56 lines (56 loc) · 1.47 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
{
"name": "flyio",
"version": "0.6.2",
"main": "node-index.js",
"browser": "index.js",
"weapp": "dist/npm/wx.js",
"author": {
"name": "wendux",
"email": "[email protected]",
"url": "https://github.com/wendux/fly"
},
"license": "MIT",
"description": "Lightweigh Promise based HTTP client for the browser and node.js",
"keywords": [
"flyjs",
"fly.js"
],
"respository": {
"type": "git",
"url": "https://github.com/wendux/fly"
},
"homepage": "https://github.com/wendux/fly",
"bugs": {
"url": "https://github.com/wendux/fly/issues"
},
"scripts": {
"dev": "node build.js dev",
"build": "node build.js npm && node build.js cdn && node build.js cdn-min && node build.js umd",
"nodeTest": "node ./demon/nodeTest.js",
"test": "karma start && codecov",
"report-coverage": "codecov"
},
"typings": "./index.d.ts",
"devDependencies": {
"babel-core": "^6.0.0",
"babel-loader": "^6.0.0",
"babel-plugin-transform-runtime": "^6.0.0",
"babel-preset-es2015": "^6.0.0",
"babel-preset-es2017": "^6.24.1",
"karma": "^2.0.2",
"karma-babel-preprocessor": "^7.0.0",
"karma-coverage": "^1.1.1",
"karma-mocha": "^1.3.0",
"karma-phantomjs-launcher": "^1.0.4",
"karma-webpack": "^3.0.0",
"keep-loader": "^0.7.1",
"mocha": "^5.1.1",
"promise-polyfill": "^7.1.2",
"qs": "^6.5.1",
"shelljs": "^0.8.1",
"webpack": "^2.6.0"
},
"dependencies": {
"request": "^2.85.0"
}
}