-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
43 lines (43 loc) · 1.02 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
{
"name": "@digitalservice4germany/npm-package-example",
"version": "0.0.0-development",
"description": "example package",
"main": "index.js",
"scripts": {
"build": "cp src/index.js package.json README.md dist",
"test": "exit 0"
},
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/digitalservicebund/npm-package-example.git"
},
"keywords": [],
"author": "Joschka de Cuveland <[email protected]>",
"license": "MIT",
"publishConfig": {
"access": "public",
"provenance": true
},
"release": {
"branches": [
"main",
"next",
"next-major",
{
"name": "alpha",
"prerelease": true
},
{
"name": "beta",
"prerelease": true
}
]
},
"homepage": "https://github.com/digitalservicebund/npm-package-example#readme",
"devDependencies": {
"@commitlint/cli": "^19.2.1",
"@commitlint/config-conventional": "^19.1.0",
"lefthook": "^1.6.7",
"semantic-release": "^23.0.5"
}
}