-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
41 lines (41 loc) · 1020 Bytes
/
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
{
"name": "points-bar",
"version": "1.5.1",
"description": "A GitHub action that creates an SVG points bar.",
"main": "src/index.js",
"directories": {
"test": "tests"
},
"scripts": {
"lint": "eslint .",
"build": "ncc build ./src/index.js -o dist --source-map --license licenses.txt",
"test": "jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/markpatterson27/points-bar.git"
},
"keywords": [],
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/markpatterson27/points-bar/issues"
},
"homepage": "https://github.com/markpatterson27/points-bar#readme",
"dependencies": {
"@actions/core": "^1.10.1"
},
"devDependencies": {
"@vercel/ncc": "^0.38.1",
"eslint": "^9.3.0",
"jest": "^29.7.0",
"memfs": "^4.9.2"
},
"jest": {
"testEnvironment": "node",
"moduleNameMapper": {
"mockData": "<rootDir>/src/__tests__/data",
"mockService": "<rootDir>/src/__tests__/services"
}
}
}