-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
65 lines (65 loc) · 1.88 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
55
56
57
58
59
60
61
62
63
64
65
{
"name": "@ohmantics/actions-experiments",
"version": "0.0.0-development",
"description": "Playing with GitHub Actions",
"main": "dist/index.js",
"author": "Alex Rosenberg",
"contributors": [],
"license": "MIT",
"dependencies": {
"html-entities": "^2.3.3",
"node-html-parser": "^6.1.4",
"request": "^2.88",
"request-promise": "^4.2.4"
},
"devDependencies": {
"@semantic-release/exec": "^6.0.3",
"@semantic-release/git": "^10.0.1",
"@types/node": "^14.14.35",
"@types/request-promise": "^4.1.41",
"@typescript-eslint/eslint-plugin": "^4.18.0",
"@typescript-eslint/parser": "^4.18.0",
"eslint": "^7.22.0",
"homebridge": "^1.3.4",
"rimraf": "^3.0.2",
"semantic-release": "^19.0.5",
"ts-node": "^9.1.1",
"typescript": "^4.2.2"
},
"engines": {
"node": ">=14",
"homebridge": ">=1.3.0"
},
"scripts": {
"lint": "eslint *.ts --max-warnings=0",
"lint:fix": "eslint *.ts --fix",
"build": "rimraf ./dist && tsc",
"prepublishOnly": "npm run lint && npm run build",
"semantic-release": "semantic-release"
},
"repository": {
"type": "git",
"url": "https://github.com/ohmantics/actions-experiments"
},
"keywords": [
"xyzzy"
],
"release": {
"branches": [ "release*" ],
"plugins": [
"@semantic-release/commit-analyzer",
"@semantic-release/release-notes-generator",
["@semantic-release/exec", {
"prepareCmd": "git checkout -b ${branch.name}-${nextRelease.version} && git push --all -u",
"publishCmd": "git checkout -b ${branch.name}-${nextRelease.version} && git pull release && git push"
}],
["@semantic-release/npm", {
"npmPublish": false
}],
["@semantic-release/git", {
"assets": [ "package.json", "package-lock.json" ],
"message": "chore(release): ${nextRelease.version} [skip ci]\n\n${nextRelease.notes}"
}]
]
}
}