forked from dcalhoun/github-to-clubhouse
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
36 lines (36 loc) · 1.04 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
{
"name": "github-to-clubhouse",
"version": "0.0.1",
"description": "Configure Clubhouse to respond to nuanced GitHub events.",
"main": "api/index.js",
"repository": "[email protected]:dcalhoun/github-to-clubhouse.git",
"author": "David Calhoun <[email protected]>",
"license": "MIT",
"private": true,
"scripts": {
"dev": "micro-dev",
"debug": "node --inspect ./node_modules/.bin/micro-dev",
"format": "prettier '**/*.{css,md,js,json}' --write",
"lint": "eslint '{index,src/**/*}.js'",
"start": "micro",
"test": "jest"
},
"dependencies": {
"dotenv": "^5.0.1",
"micro": "^9.1.4",
"node-fetch": "^2.1.1"
},
"devDependencies": {
"eslint": "^4.18.2",
"eslint-config-prettier": "^2.9.0",
"eslint-config-standard": "^11.0.0",
"eslint-plugin-import": "^2.9.0",
"eslint-plugin-node": "^6.0.1",
"eslint-plugin-prettier": "^2.6.0",
"eslint-plugin-promise": "^3.7.0",
"eslint-plugin-standard": "^3.0.1",
"jest": "^22.4.2",
"micro-dev": "^2.2.0",
"prettier": "^1.11.1"
}
}