This repository has been archived by the owner on Sep 27, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
57 lines (57 loc) · 1.51 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
{
"name": "@scaleleap/semantic-release-config",
"version": "1.1.41",
"description": "Semantic Release Shareable Configuration",
"license": "MIT",
"author": {
"name": "Roman Filippov",
"email": "[email protected]",
"url": "https://www.scaleleap.com/"
},
"homepage": "https://github.com/ScaleLeap/semantic-release-config/#readme",
"main": "lib/index.js",
"bin": {
"semantic-release": "node_modules/semantic-release/bin/semantic-release.js"
},
"files": [
"/lib"
],
"scripts": {
"prebuild": "npm run clean",
"build": "tsc --build tsconfig.build.json",
"clean": "rimraf lib",
"dev": "ts-node-dev --respawn --transpileOnly src",
"lint": "eslint --ext ts,js src/ test/",
"lint:fix": "npm run lint -- --fix",
"semantic-release": "semantic-release",
"start": "ts-node --transpile-only --pretty src",
"test": "jest",
"test:watch": "jest --watchAll"
},
"types": "lib/index.d.ts",
"dependencies": {
"@semantic-release/changelog": "6.0.3",
"@semantic-release/git": "10.0.1",
"semantic-release": "19.0.5",
"semantic-release-slack-bot": "2.1.1"
},
"devDependencies": {
"@scaleleap/utils": "1.9.98",
"@types/jest": "27.5.2",
"@types/node": "13.13.48",
"danger": "11.2.6",
"jest": "27.5.1",
"rimraf": "5.0.1",
"ts-jest": "27.1.5",
"ts-node": "10.9.1",
"tsconfigs": "4.0.2",
"typescript": "5.1.6"
},
"keywords": [],
"publishConfig": {
"access": "public"
},
"release": {
"extends": "./lib"
}
}