-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
55 lines (55 loc) · 1.26 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
{
"name": "skaat",
"version": "0.3.1",
"description": "A Skat game loop",
"exports": {
"import": "./dist/index.js",
"require": "./dist/index.cjs",
"types": "./dist/index.d.ts"
},
"type": "module",
"main": "dist/index.cjs",
"module": "dist/index.js",
"types": "dist/index.d.ts",
"sideEffects": false,
"keywords": [
"skat",
"game loop"
],
"engines": {
"node": ">= 16"
},
"scripts": {
"all": "run-s generate-types lint build test",
"build": "rollup -c",
"lint": "run-s lint:*",
"lint:eslint": "eslint .",
"lint:types": "tsc --pretty --noEmit",
"generate-types": "bio-dts -r --outDir dist src",
"test": "mocha",
"prepare": "run-s build"
},
"repository": {
"type": "git",
"url": "https://github.com/nikku/skaat.git"
},
"author": "Nico Rehwaldt <https://github.com/nikku>",
"devDependencies": {
"@types/chai": "^4.3.11",
"@types/mocha": "^10.0.6",
"@types/node": "^20.10.4",
"bio-dts": "^0.8.1",
"chai": "^4.3.10",
"eslint": "^8.56.0",
"eslint-plugin-bpmn-io": "^1.0.0",
"esm": "^3.2.25",
"mocha": "^10.2.0",
"npm-run-all": "^4.1.5",
"rollup": "^4.9.0",
"rollup-plugin-copy": "^3.5.0",
"typescript": "^5.3.3"
},
"files": [
"dist"
]
}