forked from developer-productivity/gajira-find-issue-key
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
42 lines (42 loc) · 905 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
38
39
40
41
42
{
"name": "find",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "NODE_ENV=testing jest",
"build": "ncc build index.js --minify",
"watch": "ncc build index.js --watch --minify"
},
"author": "",
"license": "ISC",
"dependencies": {
"@actions/core": "^1.0.0",
"lodash": "^4.17.11",
"node-fetch": "^2.3.0",
"yaml": "^1.3.1"
},
"devDependencies": {
"@atlassian-partner-engineering/eslint-config": "^2.3.2",
"@zeit/ncc": "^0.20.4",
"eslint": "^5.13.0",
"jest": "^24.1.0",
"jest-junit": "^6.2.1",
"nock": "^10.0.6"
},
"jest": {
"testPathIgnorePatterns": [
"/helpers/",
"/node_modules/"
],
"coveragePathIgnorePatterns": [
"/node_modules/"
],
"coverageReporters": [
"lcov",
"text",
"clover"
],
"coverageDirectory": "../test-results"
}
}