-
-
Notifications
You must be signed in to change notification settings - Fork 46
/
Copy pathpackage.json
51 lines (51 loc) · 1.13 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
{
"name": "jira-sheet-tools",
"version": "1.4.0",
"description": "Work with JIRA within Google Sheets",
"author": "Jens Rosemeier <[email protected]>",
"license": "GPL-3.0-or-later",
"bugs": {
"url": "https://github.com/ljay79/jira-tools/issues"
},
"homepage": "https://github.com/ljay79/jira-tools#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/ljay79/jira-tools.git"
},
"main": "Code.gs",
"devDependencies": {
"@google/clasp": "^2.3.0",
"del": "3.x",
"directory-exists": "latest",
"eslint-config-google": "^0.13.0",
"exec-sh": "0.3.x",
"gulp": "^4.0.2",
"gulp-changed": "^4.0.0",
"gulp-eslint": "^5.0.0",
"gulp-rename": "latest",
"gulp-replace": "latest",
"jest": "^26.6.3",
"yargs": "^12.0.5"
},
"scripts": {
"test": "jest"
},
"jest": {
"roots": [
"<rootDir>/test"
],
"modulePaths": [
"<rootDir>"
],
"moduleFileExtensions": [
"gs",
"js"
],
"collectCoverageFrom": [
"src/**/*.gs"
],
"setupFilesAfterEnv": [
"<rootDir>/test/initTestEnvironment.js"
]
}
}