forked from frikille/promised-xhr
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
45 lines (45 loc) · 1014 Bytes
/
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
{
"name": "xhr-promise-redux",
"version": "1.2.1",
"description": "XMLHttpRequest implementation wrapped in a promise.js Promise object",
"main": "dist/index.js",
"scripts": {
"compile": "babel --presets es2015 -d ./dist index.js",
"lint": "eslint index.js --quiet",
"prepublish": "npm run compile"
},
"dependencies": {
"promise": "^7.1.1"
},
"repository": {
"type": "git",
"url": "https://github.com/cbargren/xhr-promise-redux"
},
"keywords": [
"promise",
"xhr",
"browserify"
],
"author": {
"name": "Chris Bargren",
"email": "cbargren@gmail.com"
},
"contributors": [],
"license": "MIT",
"bugs": {
"url": "https://github.com/cbargren/xhr-promise-redux/issues"
},
"browser": {
"json": false
},
"files": [
"dist/index.js"
],
"devDependencies": {
"babel-cli": "^6.6.5",
"babel-preset-es2015": "^6.6.0",
"eslint": "^2.4.0",
"eslint-config-airbnb": "^6.1.0",
"eslint-plugin-react": "^4.2.3"
}
}