forked from iriscouch/browser-request
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
40 lines (40 loc) · 845 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
{
"name": "browser-request",
"version": "0.5.1",
"author": {
"name": "Jason Smith",
"email": "[email protected]"
},
"contributors": [
{
"name": "James Doyle",
"email": "[email protected]"
}
],
"description": "Browser port of the Node.js 'request' package",
"license": "Apache 2.0",
"keywords": [
"request",
"http",
"browser",
"ajax"
],
"homepage": "http://github.com/invokemedia/browser-request",
"repository": {
"type": "git",
"url": "git://github.com/invokemedia/browser-request"
},
"scripts": {
"test": "node test-run.js",
"build": "browserify index.js -o browser-request.js"
},
"devDependencies": {
"phantomjs": "^2.1.0",
"browserify": "^13.1.0",
"tape": "~4.6.*",
"tape-run": "^2.1.4"
},
"engines": [
"node"
]
}