-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 1.04 KB
/
Copy pathpackage.json
File metadata and controls
36 lines (36 loc) · 1.04 KB
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
{
"name": "@bufferapp/buffer-js-request",
"version": "0.2.0",
"description": "JS interface to send requests – thin wrapper around fetch()",
"scripts": {
"compile": "rimraf lib/* && babel src -d lib",
"prepublish": "npm run compile"
},
"main": "lib/Request.js",
"author": "Philippe Masset <pioul06+github@gmail.com>",
"homepage": "https://github.com/bufferapp/buffer-js-request#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/bufferapp/buffer-js-request.git"
},
"bugs": {
"url": "https://github.com/bufferapp/buffer-js-request/issues"
},
"license": "MIT",
"devDependencies": {
"babel-cli": "6.18.0",
"babel-core": "6.18.2",
"babel-eslint": "7.1.0",
"babel-preset-es2015": "6.18.0",
"babel-preset-stage-0": "6.16.0",
"eslint": "3.9.1",
"eslint-config-airbnb": "13.0.0",
"eslint-plugin-import": "2.2.0",
"eslint-plugin-jsx-a11y": "2.2.3",
"eslint-plugin-react": "6.6.0",
"rimraf": "2.5.4"
},
"dependencies": {
"whatwg-fetch": "0.11.1"
}
}