forked from hyperobject/crossorigin.me
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
37 lines (37 loc) · 858 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
{
"name": "crossorigin.me",
"version": "2.0.0",
"description": "A CORS proxy for everyone",
"main": "index.js",
"scripts": {
"test": "npm run lint && npm run unit",
"lint": "eslint . --ext .js",
"unit": "mocha tests/*",
"start": "node index.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/technoboy10/crossorigin.me.git"
},
"keywords": [
"cors"
],
"author": "Connor Hudson",
"license": "MIT",
"bugs": {
"url": "https://github.com/technoboy10/crossorigin.me/issues"
},
"homepage": "https://crossorigin.me",
"devDependencies": {
"eslint": "3.18.0",
"eslint-plugin-mocha": "4.11.0",
"mocha": "3.1.2",
"supertest": "2.0.1"
},
"dependencies": {
"request": "2.81.0",
"restify": "4.3.0",
"restify-router": "0.2.1",
"toobusy-js": "^0.5.1"
}
}