-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.35 KB
/
package.json
File metadata and controls
52 lines (52 loc) · 1.35 KB
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
{
"name": "@arcade2d/world",
"version": "0.1.2",
"description": "Provides components for composing and running a game world.",
"license": "MIT",
"private": false,
"author": "Marty Wallace <marty@martywallace.com>",
"main": "./lib/index.js",
"types": "./lib/index.d.ts",
"repository": "gitlab:arcade2d/world",
"scripts": {
"build": "rm -rf lib && tsc",
"lint": "eslint \"src/**/*.ts\" --fix",
"test": "jest src --verbose --collectCoverage",
"prepublish": "yarn build && yarn test",
"docs": "typedoc --out public src/index.ts"
},
"jest": {
"moduleFileExtensions": [
"js",
"json",
"ts"
],
"rootDir": "src",
"testRegex": ".*\\.spec\\.ts$",
"transform": {
"^.+\\.(t|j)s$": "ts-jest"
},
"collectCoverageFrom": [
"**/*.(t|j)s"
],
"coverageDirectory": "../coverage",
"testEnvironment": "node"
},
"devDependencies": {
"@types/jest": "^27.4.0",
"@typescript-eslint/eslint-plugin": "^5.10.1",
"@typescript-eslint/parser": "^5.10.1",
"eslint": "^8.8.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^4.0.0",
"jest": "^27.4.7",
"prettier": "^2.5.1",
"ts-jest": "^27.1.3",
"typedoc": "^0.23.10",
"typescript": "^4.7.4"
},
"dependencies": {
"@arcade2d/utils": "^0.1.1",
"json-typescript": "^1.1.2"
}
}