-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
75 lines (75 loc) · 1.81 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
{
"name": "microfeedback-jira",
"private": true,
"version": "0.5.0",
"description": "An easily-deployable feedback microservice collects user feedback as JIRA issues",
"files": [
"index.js"
],
"scripts": {
"start": "micro index.js",
"dev": "micro-dev index.js",
"test": "NODE_ENV=test JIRA_USERNAME=foo JIRA_PASSWORD=bar JIRA_HOST=foo.atlassian.net ava",
"test:debug": "NODE_ENV=test iron-node ./node_modules/ava/profile.js test.js",
"lint": "xo",
"release": "np",
"deploy": "now . -e JIRA_USERNAME=@microfeedback-jira-username JIRA_PASSWORD=@microfeedback-jira-password --public && now alias"
},
"engines": {
"node": "8.x.x"
},
"keywords": [
"micro",
"microfeedback",
"microservice",
"feedback",
"jira",
"issues"
],
"repository": "https://github.com/microfeedback/microfeedback-jira",
"author": "Steven Loria",
"license": "MIT",
"devDependencies": {
"ava": "^0.25.0",
"dotenv": "^6.2.0",
"micro-dev": "^3.0.0",
"np": "^3.1.0",
"xo": "^0.23.0"
},
"dependencies": {
"jira-client": "^6.15.0",
"lodash.trim": "^4.5.1",
"micro": "^9.3.4",
"microfeedback-core": "^3.0.0",
"mustache": "^3.2.1",
"truncate": "^2.1.0",
"ua-parser-js": "^0.7.19"
},
"xo": {
"space": true,
"rules": {
"no-multi-assign": 0,
"eqeqeq": 0,
"capitalized-comments": 0,
"operator-linebreak": 0,
"comma-dangle": [
"error",
{
"arrays": "always-multiline",
"objects": "always-multiline",
"imports": "always-multiline",
"exports": "always-multiline",
"functions": "never"
}
]
}
},
"now": {
"env": [
"JIRA_USERNAME",
"JIRA_PASSWORD",
"JIRA_HOST"
],
"alias": "microfeedback-jira"
}
}