forked from microfeedback/microfeedback-github
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
76 lines (76 loc) · 1.9 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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
{
"name": "microfeedback-github",
"private": true,
"version": "0.10.0",
"description": "An easily-deployable feedback microservice that posts GitHub issues on a given repo",
"files": [
"index.js"
],
"scripts": {
"start": "micro index.js",
"dev": "micro-dev index.js",
"test": "npm run lint && NODE_ENV=test GH_REPO=microfeedback/testrepo GH_TOKEN=secret ava",
"test:debug": "NODE_ENV=test iron-node ./node_modules/ava/profile.js test.js",
"lint": "xo",
"release": "np && npm run deploy",
"deploy": "now . -e GH_TOKEN=@microfeedback-gh-token -e AKISMET_API_KEY=@akismet-api-key -e PERSPECTIVE_API_KEY=@perspective-api-key -e ALLOWED_REPOS=$(cat allowed_repos.txt) --public && now alias"
},
"engines": {
"node": "8.x.x"
},
"keywords": [
"micro",
"microfeedback",
"microservice",
"feedback",
"github",
"issues"
],
"repository": "https://github.com/microfeedback/microfeedback-github",
"author": "Steven Loria",
"license": "MIT",
"devDependencies": {
"ava": "^0.25.0",
"axios-mock-adapter": "^1.20.0",
"micro-dev": "^3.0.0",
"np": "^3.1.0",
"xo": "^0.22.0"
},
"dependencies": {
"axios": "^0.24.0",
"markdown-table": "^1.1.3",
"micro": "^9.3.4",
"microfeedback-core": "^3.0.0",
"mustache": "^2.3.2",
"parse-github-repo-url": "^1.4.0",
"truncate": "^2.1.0",
"ua-parser-js": "^0.7.19"
},
"xo": {
"envs": [
"node"
],
"space": true,
"rules": {
"no-warning-comments": 0,
"new-cap": 0,
"camelcase": 0,
"comma-dangle": [
"error",
{
"arrays": "always-multiline",
"objects": "always-multiline",
"imports": "always-multiline",
"exports": "always-multiline",
"functions": "never"
}
]
}
},
"now": {
"env": [
"GH_TOKEN"
],
"alias": "microfeedback-github"
}
}