UNPKG

1.04 kBJSONView Raw
1{
2 "name": "fetch-jsonp",
3 "version": "0.9.0",
4 "description": "Fetch JSONP like a boss using Fetch API",
5 "main": "build/fetch-jsonp.js",
6 "scripts": {
7 "test": "mocha --compilers js:babel/register --recursive --ui bdd --reporter spec",
8 "build": "babel src/ --modules umd --out-dir build",
9 "clean": "rm -rf build",
10 "lint": "eslint src/ test/"
11 },
12 "keywords": [
13 "fetch",
14 "jsonp",
15 "github fetch",
16 "ajax"
17 ],
18 "dependencies": {
19 "es6-promise": "^2.3.0"
20 },
21 "devDependencies": {
22 "babel": "^5.8.21",
23 "babel-core": "^5.8.21",
24 "babel-eslint": "^4.0.5",
25 "chai": "^3.2.0",
26 "eslint": "^1.1.0",
27 "eslint-config-airbnb": "^0.0.7",
28 "eslint-plugin-react": "^3.2.1",
29 "mocha": "^2.2.5"
30 },
31 "repository": {
32 "type": "git",
33 "url": "git+https://github.com/camsong/fetch-jsonp.git"
34 },
35 "author": "Cam Song",
36 "license": "MIT",
37 "bugs": {
38 "url": "https://github.com/camsong/fetch-jsonp/issues"
39 },
40 "homepage": "https://github.com/camsong/fetch-jsonp#readme"
41}