-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathpackage.json
56 lines (56 loc) · 2.05 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
{
"name": "jira-log",
"version": "0.5.1",
"description": "",
"main": "jira-parser.js",
"directories": {
"test": "tests"
},
"scripts": {
"unit": "jest -c jest.config.unit.json",
"integration": "jest -c jest.config.integration.json",
"test": "npm run build-test && jest -c jest.config.json",
"test:watch": "jest -c jest.config.unit.json --watch",
"test:coverage": "jest -c jest.config.unit.json --coverage",
"lint": "npm run lint:code && npm run lint:tests",
"lint:code": "eslint --config .eslintrc.json --ignore-path .eslintignore chrome-extension/**/*.js --fix --quiet",
"lint:tests": "eslint --config .eslintrc.json --ignore-path .eslintignore tests/**/*.spec.js --fix --quiet",
"package": "node scripts/package",
"deploy": "npm run test && npm run sync-version && npm run package && node scripts/deploy",
"major": "npm version --no-git-tag-version major && npm run sync-version",
"minor": "npm version --no-git-tag-version minor && npm run sync-version",
"patch": "npm version --no-git-tag-version patch && npm run sync-version",
"sync-version": "node scripts/sync-version",
"build-test": "node scripts/build-for-test",
"ui-test-playground": "npm run build-test && node tests/integration/test-puppeteer"
},
"author": "Alfeu Santos <alfeugds@gmail.com>",
"license": "MIT",
"jest": {
"testEnvironment": "jsdom"
},
"devDependencies": {
"archiver": "^2.1.1",
"chrome-webstore-upload": "^0.2.2",
"dotenv": "^4.0.0",
"eslint": "^6.8.0",
"eslint-config-standard": "^13.0.1",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-node": "^9.1.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.0",
"fs-extra": "^10.0.0",
"hoek": "4.2.1",
"jest": "^26.6.3",
"jest-cli": "^26.6.3",
"jest-junit": "^12.2.0",
"puppeteer": "^1.19.0",
"sshpk": "1.14.1"
},
"repository": "https://github.com/alfeugds/jiraworklogtool.git",
"dependencies": {
"axios": "^0.21.4",
"axios-mock-adapter": "^1.15.0",
"retire": "^1.6.0"
}
}