-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
78 lines (78 loc) · 1.92 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
{
"name": "@taskforcesh/message-broker",
"version": "1.0.0",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"source": "src/index.ts",
"files": [
"dist"
],
"repository": "https://github.com/taskforcesh/message-broker.git",
"author": "<[email protected]>",
"license": "commercial",
"scripts": {
"dev": "tsc --watch",
"build": "tsc",
"lint": "node_modules/.bin/tslint --project tsconfig.json -c tslint.json 'src/**/*.ts'",
"semantic-release": "tsc && semantic-release",
"test": "mocha --require ts-node/register tests/**/*.ts",
"postinstall": "npx tsc"
},
"devDependencies": {
"@commitlint/config-conventional": "^8.0.0",
"@semantic-release/changelog": "^3.0.4",
"@semantic-release/git": "^7.0.16",
"@types/chai": "^4.3.6",
"@types/node": "^12.0.10",
"chai": "^4.3.9",
"commitlint": "^7.5.2",
"husky": "^1.3.1",
"mocha": "^10.2.0",
"semantic-release": "^15.13.18",
"ts-node": "^8.0.2",
"tslint": "^5.11.0",
"tslint-eslint-rules": "^5.4.0",
"typescript": "^3.1.1"
},
"release": {
"branch": "master",
"plugins": [
"@semantic-release/commit-analyzer",
"@semantic-release/release-notes-generator",
[
"@semantic-release/changelog",
{
"changelogFile": "docs/CHANGELOG.md"
}
],
"@semantic-release/npm",
[
"@semantic-release/git",
{
"assets": false,
"message": "chore(release): ${nextRelease.version} [skip ci]\n\n${nextRelease.notes}"
}
]
]
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"prettier": {
"singleQuote": true,
"trailingComma": "all",
"tabWidth": 2,
"printWidth": 80
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"dependencies": {},
"publishConfig": {
"access": "public"
}
}