forked from mxstbr/micro-github
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.17 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 1.17 KB
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
46
47
48
49
{
"name": "now-github",
"version": "1.0.0",
"description": "Github Authentication using Now.sh",
"main": "index.js",
"files": [
"lib"
],
"types": "index.d.ts",
"repository": {
"type": "git",
"url": "git+https://github.com/codymorrison/now-github.git"
},
"author": "Cody Morrison <cody@pixel43.com> (https://github.com/codymorrison)",
"license": "MIT",
"bugs": {
"url": "https://github.com/codymorrison/now-github/issues"
},
"homepage": "https://github.com/codymorrison/now-github.git#readme",
"engines": {
"node": ">=8.0.0",
"npm": ">=6.0.0"
},
"dependencies": {
"axios": "^0.18.0",
"dotenv": "^7.0.0",
"micro": "^9.3.3",
"micro-redirect": "^1.0.0",
"microrouter": "^3.1.3",
"uid-promise": "^1.1.0"
},
"devDependencies": {
"chai": "^4.2.0",
"eslint": "^5.15.3",
"eslint-plugin-mocha": "^5.3.0",
"eslint-plugin-node": "^8.0.1",
"eslint-plugin-security": "^1.4.0",
"micro-dev": "^3.0.0",
"mocha": "^6.0.2",
"prettier": "^1.16.4",
"supertest": "^4.0.2"
},
"scripts": {
"start": "micro",
"dev": "micro-dev -p 4000",
"lint": "eslint index.js",
"test": "mocha"
}
}