-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
42 lines (42 loc) · 1.03 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
{
"name": "recap",
"version": "1.0.1",
"description": "Github action to summarize the most important changes in a pull request",
"main": "dist/index.js",
"scripts": {
"build": "eslint src && ncc build src/entrypoint.js",
"test": "jest",
"lint": "eslint ./"
},
"keywords": [],
"author": "Manuel de la Torre",
"license": "MIT",
"jest": {
"testEnvironment": "node",
"setupFilesAfterEnv": [
"./tests/setup.js"
],
"testMatch": [
"**/?(*.)+(spec|test).[jt]s?(x)"
]
},
"dependencies": {
"@actions/core": "^1.5.0",
"@actions/github": "^5.0.0",
"axios": "^0.26.1",
"i18n-js": "^3.9.2",
"lodash.get": "^4.4.2",
"mixpanel": "^0.13.0"
},
"devDependencies": {
"@zeit/ncc": "^0.22.3",
"eslint": "^7.32.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-plugin-import": "^2.24.1",
"eslint-plugin-jest": "^24.4.0",
"jest": "^27.0.6",
"jest-extended": "^3.2.4",
"nock": "^13.3.0"
},
"funding": "https://github.com/sponsors/manuelmhtr"
}