generated from actions/typescript-action
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
48 lines (48 loc) · 1.41 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
{
"name": "license-check-action",
"version": "0.0.0",
"private": true,
"main": "lib/main.js",
"scripts": {
"eslint": "eslint 'src/**/*.ts'",
"eslint:fix": "eslint 'src/**/*.ts' --fix",
"test": "jest",
"build": "tsc",
"package": "ncc build --source-map --license licenses.txt",
"all": "npm run build && npm run eslint:fix && npm run package && npm test"
},
"author": {
"name": "code quest sp. z o.o.",
"url": "https://codequest.com"
},
"license": "MIT",
"dependencies": {
"@actions/core": "^1.2.6",
"@types/license-checker": "^25.0.1",
"license-checker": "^25.0.1"
},
"devDependencies": {
"@codequest-eu/eslint-config": "0.0.1-alpha.7",
"@types/jest": "^26.0.15",
"@types/node": "^14.14.9",
"@typescript-eslint/eslint-plugin": "^4.22.0",
"@typescript-eslint/parser": "^4.22.0",
"@vercel/ncc": "^0.25.1",
"babel-eslint": "^10.0.0",
"eslint": "^7.17.0",
"eslint-import-resolver-typescript": "^2.3.0",
"eslint-plugin-flowtype": "^5.2.0",
"eslint-plugin-i18n-json": "^3.1.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-prettier": "^3.3.1",
"eslint-plugin-react": "^7.22.0",
"eslint-plugin-react-hooks": "^4.2.0",
"jest": "^26.6.3",
"jest-circus": "^26.6.3",
"js-yaml": "^3.14.0",
"prettier": "^2.2.1",
"ts-jest": "^26.4.4",
"typescript": "^4.1.3"
}
}