-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 849 Bytes
/
package.json
File metadata and controls
37 lines (37 loc) · 849 Bytes
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
{
"name": "fetch-x",
"version": "1.1.0",
"description": "A wrapper around the new fetch API",
"main": "dist/index.js",
"scripts": {
"test": "mocha --compilers js:babel-core/register",
"build": "webpack"
},
"repository": {
"type": "git",
"url": "git+https://github.com/cuining/fetch-x.git"
},
"keywords": [
"fetch",
"api"
],
"files": [
"dist"
],
"author": "cuining",
"license": "ISC",
"bugs": {
"url": "https://github.com/cuining/fetch-x/issues"
},
"homepage": "https://github.com/cuining/fetch-x#readme",
"devDependencies": {
"babel-core": "^6.26.0",
"babel-loader": "^7.1.2",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-preset-env": "^1.6.1",
"chai": "^4.1.2",
"es6-promise": "^4.1.1",
"mocha": "^4.0.1",
"webpack": "^3.8.1"
}
}