-
Notifications
You must be signed in to change notification settings - Fork 27
/
package.json
118 lines (118 loc) · 2.84 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
{
"name": "uno-engine",
"version": "0.0.0",
"description": "Uno game implementation in JavaScript",
"homepage": "https://github.com/danguilherme/uno#readme",
"main": "dist/uno-engine.cjs.js",
"module": "dist/uno-engine.esm.js",
"browser": "dist/uno-engine.umd.js",
"types": "dist/src/uno-engine.d.ts",
"scripts": {
"build": "rollup -c --bundleConfigAsCjs",
"dev": "rollup -c -w",
"docs": "typedoc --out docs/api/ src/**/*",
"lint": "tslint -c tslint.json -p tsconfig.json",
"test": "jest",
"test:report": "yarn test --coverage --verbose",
"test:watch": "yarn test --watchAll",
"semantic-release": "semantic-release",
"lint:commit-message": "commitlint --help-url https://github.com/danguilherme/uno/blob/main/CONTRIBUTING.md#committing"
},
"keywords": [
"uno",
"can-can",
"card-game",
"cards",
"game"
],
"author": "Guilherme Ventura (https://danguilherme.github.io/)",
"repository": {
"type": "git",
"url": "git+https://github.com/danguilherme/uno.git"
},
"bugs": {
"url": "https://github.com/danguilherme/uno/issues"
},
"license": "MIT",
"files": [
"dist",
"CHANGELOG.md"
],
"dependencies": {
"events": "^3.1.0",
"shuffle": "^0.2.5"
},
"devDependencies": {
"@commitlint/cli": "^19.3.0",
"@commitlint/config-conventional": "^19.2.2",
"@rollup/plugin-commonjs": "^25.0.7",
"@rollup/plugin-node-resolve": "^15.2.3",
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/git": "^10.0.1",
"@types/events": "^3.0.0",
"@types/jest": "^24.9.1",
"chai": "^4.2.0",
"jest": "^29.7.0",
"rollup": "^4.17.2",
"rollup-plugin-define": "^1.0.1",
"rollup-plugin-typescript2": "^0.36.0",
"semantic-release": "^23.0.8",
"ts-jest": "^29.1.2",
"tslib": "^2.6.2",
"tslint": "^6.1.3",
"typedoc": "^0.25.13",
"typescript": "^5.4.5"
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"release": {
"branches": [
"+([0-9])?(.{+([0-9]),x}).x",
"main",
"next",
"next-major",
{
"name": "beta",
"prerelease": true
},
{
"name": "alpha",
"prerelease": true
}
],
"plugins": [
[
"@semantic-release/commit-analyzer",
{
"preset": "conventionalcommits"
}
],
[
"@semantic-release/release-notes-generator",
{
"preset": "conventionalcommits"
}
],
"@semantic-release/npm",
"@semantic-release/github",
[
"@semantic-release/changelog",
{
"changelogFile": "CHANGELOG.md"
}
],
[
"@semantic-release/git",
{
"assets": [
"CHANGELOG.md"
]
}
]
]
},
"packageManager": "yarn@1.22.19"
}