-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
54 lines (54 loc) · 1.4 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
49
50
51
52
53
54
{
"name": "ng-update",
"version": "1.0.0",
"description": "a Github action that keeps your Angular CLI-based projects up-to-date with @angular via automated pull requests.",
"main": "dist/main.js",
"scripts": {
"clean": "rm -rf dist",
"lint": "eslint --fix",
"prebuild": "npm run clean",
"build": "tsc",
"test": "rm -rf demo && mocha --timeout 300000",
"semantic-release": "semantic-release"
},
"repository": {
"type": "git",
"url": "git+https://github.com/fast-facts/ng-update.git"
},
"homepage": "https://github.com/fast-facts/ng-update",
"bugs": "https://github.com/fast-facts/ng-update/issues",
"keywords": [
"actions",
"angular",
"ng",
"update"
],
"author": "fast-facts",
"license": "MIT",
"dependencies": {
"@actions/core": "^1.11.1",
"@actions/exec": "^1.1.1",
"@actions/github": "^6.0.0",
"@actions/io": "^1.1.3",
"object-hash": "^3.0.0",
"simple-git": "^3.27.0",
"tslib": "^2.8.1"
},
"devDependencies": {
"@types/node": "^22.9.1",
"@types/object-hash": "^3.0.6",
"chai": "^4.5.0",
"eslint": "^9.15.0",
"eslint-config-final": "^1.4.13",
"mocha": "^10.8.2",
"typescript": "^5.5.4",
"typescript-eslint": "^8.15.0"
},
"release": {
"plugins": [
"@semantic-release/commit-analyzer",
"@semantic-release/release-notes-generator",
"@semantic-release/github"
]
}
}