-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
38 lines (38 loc) · 1.11 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
{
"name": "opensearch-badger",
"version": "1.0.0",
"description": "Creates badges for OpenSearch components",
"main": "index.js",
"scripts": {
"build": "tsc && ncc build lib/index.js",
"test": "jest",
"lint": "./node_modules/.bin/eslint --ext .ts . --fix"
},
"repository": {
"type": "git",
"url": "git+https://github.com/peternied/opensearch-build-badger.git"
},
"author": "Peter Nied",
"bugs": {
"url": "https://github.com/peternied/opensearch-build-badger/issues"
},
"homepage": "https://github.com/peternied/opensearch-build-badger#readme",
"dependencies": {
"@actions/core": "^1.4.0"
},
"devDependencies": {
"@types/jest": "^29.1.2",
"@types/node": "^16.4.11",
"@typescript-eslint/eslint-plugin": "^5.40.1",
"@typescript-eslint/parser": "^5.40.1",
"@vercel/ncc": "^0.29.0",
"eslint": "^8.25.0",
"eslint-config-standard-with-typescript": "^23.0.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-n": "^15.3.0",
"eslint-plugin-promise": "^6.1.1",
"jest": "^29.0.3",
"ts-jest": "^29.0.3",
"typescript": "^4.8.4"
}
}