-
Notifications
You must be signed in to change notification settings - Fork 156
/
package.json
36 lines (36 loc) · 916 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
{
"name": "fetch-jsonp",
"version": "1.3.0",
"description": "Fetch JSONP like a boss using Fetch API",
"main": "build/fetch-jsonp.js",
"scripts": {
"prepublish": "npm run lint && npm run clean && npm run build",
"build": "babel src/ --modules umd --out-dir build",
"clean": "rm -rf build",
"lint": "eslint src/"
},
"keywords": [
"fetch",
"jsonp",
"github fetch",
"ajax"
],
"devDependencies": {
"babel": "^5.8.21",
"babel-core": "^5.8.21",
"babel-eslint": "^4.0.5",
"eslint": "^1.1.0",
"eslint-config-airbnb": "^0.0.7",
"eslint-plugin-react": "^3.2.1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/camsong/fetch-jsonp.git"
},
"author": "Cam Song",
"license": "MIT",
"bugs": {
"url": "https://github.com/camsong/fetch-jsonp/issues"
},
"homepage": "https://github.com/camsong/fetch-jsonp#readme"
}