-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
56 lines (56 loc) · 1.58 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
{
"author": "Stephen Niedzielski <stephen@oidoid.com> (https://oidoid.com)",
"bugs": "https://github.com/oidoid/klondike-solitaire/issues",
"description": "🂮 Klondike Solitaire game logic library.",
"devDependencies": {
"prettier": "3.2.5",
"typescript": "5.4.3",
"vitest": "1.4.0"
},
"engines": {
"node": ">=18"
},
"files": [
"dist",
"!dist/**/tsconfig.tsbuildinfo"
],
"homepage": "https://github.com/oidoid/klondike-solitaire",
"keywords": [
"klondike",
"solitaire",
"patience",
"canfield",
"game"
],
"license": "AGPL-3.0-only",
"main": "dist/src/index.js",
"name": "klondike-solitaire",
"prettier": {
"arrowParens": "avoid",
"bracketSpacing": false,
"jsxSingleQuote": true,
"proseWrap": "always",
"semi": false,
"singleQuote": true,
"trailingComma": "none"
},
"repository": {
"type": "git",
"url": "git+https://github.com/oidoid/klondike-solitaire.git"
},
"scripts": {
"build": "tsc --build",
"clean": "rm -rf dist",
"format": "npm run formatter -- --write",
"formatter": "prettier --cache --log-level warn './**/*.{json,md,ts,yaml}'",
"preversion": "[ -z \"$(git status -z)\" ]",
"prepublishOnly": "! git symbolic-ref --quiet HEAD || git push --follow-tags origin \"$(git branch --show-current)\"",
"test": "npm run test:format && npm run test:unit && npm run build",
"test:format": "npm run formatter -- --check",
"test:unit": "vitest run",
"version": "npm test"
},
"type": "module",
"types": "dist/src/index.d.ts",
"version": "0.1.0-1"
}