-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
118 lines (118 loc) · 2.81 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
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
{
"private": true,
"name": "@dcgw/bunny-patrol",
"version": "0.0.0-development",
"description": "TS rewrite of old game made for Pirate Kart 2012-in-one",
"keywords": [
"game",
"pirate-kart",
"typescript"
],
"author": "George Weller <[email protected]>",
"contributors": [
"Daniel Cassidy <[email protected]> (https://www.danielcassidy.me.uk/)"
],
"homepage": "https://github.com/dcgw/bunny-patrol",
"bugs": "https://github.com/dcgw/bunny-patrol",
"repository": "[email protected]:dcgw/bunny-patrol.git",
"license": "UNLICENSED",
"scripts": {
"build": "webpack --env production",
"fix": "tsc && eslint . --fix && prettier --write .",
"lint": "tsc && eslint . && prettier --check .",
"semantic-release": "semantic-release",
"start": "webpack-dev-server --open",
"test": "ava"
},
"engines": {
"node": "^12 || ^14 || >=16"
},
"dependencies": {
"@dcgw/excalibur-extended-label": "2.0.2",
"@types/domready": "1.0.2",
"@types/webpack-env": "1.18.5",
"domready": "1.0.8",
"excalibur": "0.24.4",
"tslib": "2.8.1"
},
"devDependencies": {
"@semantic-release/exec": "5.0.0",
"@softwareventures/eslint-config": "4.3.5",
"@softwareventures/prettier-config": "3.0.0",
"@softwareventures/tslint-rules": "1.0.0",
"@softwareventures/webpack-config": "3.1.5",
"ava": "4.3.3",
"cz-conventional-changelog": "3.3.0",
"eslint": "8.57.1",
"prettier": "2.8.8",
"semantic-release": "17.4.7",
"semantic-release-s3-upload": "1.0.7",
"ts-loader": "9.5.1",
"ts-node": "10.9.2",
"typescript": "4.9.5",
"webpack": "5.97.1",
"webpack-cli": "4.10.0",
"webpack-dev-server": "4.15.2"
},
"eslintConfig": {
"root": true,
"extends": "@softwareventures"
},
"prettier": "@softwareventures/prettier-config",
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"ava": {
"extensions": [
"ts"
],
"require": [
"ts-node/register"
]
},
"release": {
"branches": [
"main"
],
"releaseRules": [
{
"type": "refactor",
"release": "patch"
}
],
"plugins": [
"@semantic-release/commit-analyzer",
"@semantic-release/release-notes-generator",
"@semantic-release/github",
[
"@semantic-release/npm",
{
"npmPublish": false
}
],
[
"@semantic-release/exec",
{
"prepareCmd": "yarn build"
}
],
[
"semantic-release-s3-upload",
{
"uploads": [
{
"src": {
"dir": "./dist"
},
"dest": {
"bucket": "bunny-patrol"
}
}
]
}
]
]
}
}