-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
35 lines (35 loc) · 850 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
{
"name": "yamler",
"version": "1.0.11",
"description": "YAML Parsing GitHub Action",
"main": "build/main.js",
"scripts": {
"build": "tsc",
"dev": "tsc -w",
"test": "jest --coverage",
"test:ga": "act -j CI",
"clean": "rm -rf build node_modules"
},
"repository": {
"type": "git",
"url": "git+https://github.com/juliojimenez/yamler.git"
},
"author": "[email protected]",
"license": "MIT",
"bugs": {
"url": "https://github.com/juliojimenez/yamler/issues"
},
"homepage": "https://github.com/juliojimenez/yamler#readme",
"devDependencies": {
"@types/jest": "^29.5.12",
"jest": "^29.7.0",
"jest-circus": "^29.7.0",
"ts-jest": "^29.1.5",
"typescript": "^5.5.3"
},
"dependencies": {
"@actions/core": "^1.10.1",
"@actions/github": "^6.0.0",
"yaml": "^2.4.5"
}
}