-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
71 lines (71 loc) · 1.99 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
{
"name": "downstream-version-automerge",
"version": "1.0.7",
"description": "Version based auto merging",
"keywords": [
"GitHub",
"actions",
"javaScript",
"auto-merge",
"node"
],
"repository": {
"type": "git",
"url": "git+https://github.com/maikuru/downstream-version-automerge.git"
},
"bugs": {
"url": "https://github.com/maikuru/downstream-version-automerge/issues"
},
"homepage": "https://github.com/maikuru/downstream-version-automerge#readme",
"author": "Michael Lodge-Paolini <michael.lodge-paolini@wexinc.com>",
"license": "MIT",
"private": true,
"main": "dist/index.js",
"scripts": {
"clean": "rimraf dist",
"lint": "eslint \"src/**.js\" \"tests/**.js\" --fix",
"test": "eslint \"src/**.js\" \"tests/**.js\" && jest --coverage",
"test:debug": "node --inspect-brk node_modules/.bin/jest --runInBand",
"prebuild": "yarn clean",
"build": "ncc build src/main.js -o dist --source-map --license licenses.txt",
"precommit": "yarn test && yarn build && git add dist/",
"preci": "rm -fr node_modules",
"ci": "yarn install --frozen-lockfile"
},
"jest": {
"testEnvironment": "node",
"collectCoverageFrom": [
"src/index.js"
],
"coverageThreshold": {
"global": {
"branches": 80,
"functions": 80,
"lines": 80,
"statements": 80
}
}
},
"dependencies": {
"@actions/core": "^1.9.1",
"@actions/exec": "^1.0.4",
"@actions/github": "^4.0.0",
"semver": "^7.3.4"
},
"devDependencies": {
"@vercel/ncc": "^0.26.0",
"eslint": "^7.15.0",
"eslint-config-airbnb": "^18.2.1",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-prettier": "^3.3.0",
"eslint-plugin-react": "^7.21.5",
"eslint-plugin-react-hooks": "^4.2.0",
"husky": "^4.3.6",
"jest": "^27.3.1",
"prettier": "^2.2.1",
"react-scripts": "^5.0.1",
"rimraf": "^3.0.2"
}
}