-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
88 lines (88 loc) · 2.18 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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
{
"name": "@michaeldowseza/hello-world",
"version": "1.0.0",
"description": "Hello world",
"files": [
"lib/"
],
"scripts": {
"lint": "eslint . --ext .ts",
"test": "jest --coverage",
"prepublishOnly": "npm run build",
"build": "npm run build:esm && npm run build:cjs",
"build:esm": "tsc",
"build:cjs": "tsc --module commonjs --outDir lib/cjs"
},
"main": "./lib/cjs/index.js",
"module": "./lib/esm/index.js",
"types": "./lib/esm/index.d.ts",
"repository": {
"type": "git",
"url": "git+https://github.com/michaeldowseza/hello-world.git"
},
"keywords": [
"hello-world"
],
"engines": {
"node": ">=12"
},
"author": "Michael Dowse",
"license": "MIT",
"bugs": {
"url": "https://github.com/michaeldowseza/hello-world/issues"
},
"homepage": "https://github.com/michaeldowseza/hello-world#readme",
"devDependencies": {
"@semantic-release/changelog": "^5.0.1",
"@semantic-release/commit-analyzer": "^8.0.1",
"@semantic-release/git": "^9.0.0",
"@semantic-release/github": "^7.2.3",
"@semantic-release/npm": "^7.1.3",
"@semantic-release/release-notes-generator": "^9.0.3",
"@types/jest": "^26.0.23",
"@types/node": "^15.12.4",
"@typescript-eslint/eslint-plugin": "^4.28.1",
"@typescript-eslint/parser": "^4.28.1",
"eslint": "^7.29.0",
"jest": "^27.0.4",
"ts-jest": "^27.0.3",
"typescript": "^4.3.2"
},
"prettier": {
"singleQuote": true,
"tabWidth": 2,
"printWidth": 120,
"arrowParens": "avoid",
"trailingComma": "none"
},
"release": {
"branches": [
"main"
],
"plugins": [
[
"@semantic-release/changelog",
{
"changelogFile": "CHANGELOG.md"
}
],
[
"@semantic-release/git",
{
"assets": [
"package.json",
"CHANGELOG.md"
],
"message": "release: ${nextRelease.version} \n\n${nextRelease.notes}"
}
],
"@semantic-release/commit-analyzer",
"@semantic-release/release-notes-generator",
"@semantic-release/npm",
"@semantic-release/github"
]
},
"publishConfig": {
"access": "public"
}
}