-
Notifications
You must be signed in to change notification settings - Fork 22
/
package.json
45 lines (45 loc) · 1.14 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
{
"name": "superagent-jsonp",
"version": "0.2.1",
"description": "Wrap a sweet jsonp filling in a savoury superagent wrapper",
"main": "dist/superagent-jsonp.js",
"dependencies": {
"superagent": ">=1.4"
},
"devDependencies": {
"babel-polyfill": "^6.9.0",
"babel-preset-env": "^1.6.1",
"babel-register": "^6.9.0",
"chai": "^3.3.0",
"eslint": "^4.11.0",
"eslint-config-airbnb-base": "^12.1.0",
"eslint-plugin-import": "^2.8.0",
"gulp": "^3.9.0",
"gulp-babel": "^6.1.2",
"gulp-eslint": "^4.0.0",
"jsdom": "^9.2.1",
"mocha": "^4.0.1",
"mocha-babel": "^3.0.0",
"sinon": "^1.17.4",
"sinon-chai": "^2.8.0"
},
"scripts": {
"build": "gulp",
"lint": "eslint --fix src/*.js test/*.js",
"test": "gulp && mocha --require babel-register test/*_spec.js"
},
"repository": {
"type": "git",
"url": "https://github.com/lamp/superagent-jsonp.git"
},
"keywords": [
"jsonp",
"superagent"
],
"author": "lamp",
"license": "WTFPL",
"bugs": {
"url": "https://github.com/lamp/superagent-jsonp/issues"
},
"homepage": "https://github.com/lamp/superagent-jsonp"
}