-
Notifications
You must be signed in to change notification settings - Fork 13
/
package.json
61 lines (61 loc) · 1.62 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": "fetch-please",
"version": "0.4.3",
"description": "HTTP-transport that supports Promises and cancelable requests (XHR)",
"main": "dist/fetch-please.js",
"scripts": {
"build:umd": "webpack src/fetch-please.js dist/fetch-please.js --config webpack.config.js",
"build:umd:min": "NODE_ENV=production webpack src/fetch-please.js dist/fetch-please.min.js --config webpack.config.js",
"build": "npm run build:umd && npm run build:umd:min",
"build:watch": "npm run build:umd -- --watch",
"prepublish": "npm run build",
"lint": "eslint src/ test/",
"test": "mocha test",
"test:watch": "npm test -- --watch"
},
"repository": {
"type": "git",
"url": "git+https://github.com/albburtsev/fetch-please.git"
},
"keywords": [
"fetch",
"XHR",
"XMLHttpRequest",
"HTTP",
"get",
"post",
"put",
"delete",
"abort",
"cancel",
"cancelable",
"requests",
"promise",
"REST API",
"React"
],
"author": {
"name": "Alexander Burtsev",
"url": "https://github.com/albburtsev"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/albburtsev/fetch-please/issues"
},
"homepage": "https://github.com/albburtsev/fetch-please#readme",
"devDependencies": {
"babel-core": "^6.8.0",
"babel-eslint": "^6.0.4",
"babel-loader": "^6.2.4",
"babel-preset-env": "^1.6.0",
"chai": "^3.4.0",
"eslint": "^2.11.1",
"eslint-loader": "^1.3.0",
"eslint-plugin-babel": "^3.2.0",
"eslint-plugin-react": "^5.1.1",
"lodash": "^3.10.1",
"mocha": "^2.3.3",
"sinon": "^1.17.2",
"webpack": "^1.12.2"
}
}