-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 806 Bytes
/
package.json
File metadata and controls
32 lines (32 loc) · 806 Bytes
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
{
"name": "@flowup/releases-example-lib",
"version": "1.2.0",
"license": "MIT",
"author": "Matěj Chalk <matej.chalk@flowup.cz>",
"repository": {
"type": "git",
"url": "git+https://github.com/flowup/releases-example-lib.git"
},
"homepage": "https://github.com/flowup/releases-example-lib#readme",
"bugs": {
"url": "https://github.com/flowup/releases-example-lib/issues"
},
"publishConfig": {
"access": "public",
"registry": "https://npm.pkg.github.com"
},
"type": "module",
"exports": "./src/index.js",
"files": [
"src"
],
"scripts": {
"test": "node --test",
"release": "semantic-release"
},
"devDependencies": {
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/git": "^10.0.1",
"semantic-release": "^24.0.0"
}
}