-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
39 lines (39 loc) · 1 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
{
"name": "@trixt0r/ecs",
"version": "0.5.1",
"description": "Entity component system for any JS environment written in TypeScript.",
"main": "build/index.js",
"keywords": [
"ecs",
"entity",
"component",
"system",
"entity component system",
"typescript",
"ts",
"tsc"
],
"types": "build/index.d.ts",
"scripts": {
"lint": "eslint ./src --ext .js,.ts",
"lint.fix": "eslint ./src --ext .js,.ts --fix",
"prettier": "prettier --write ./src",
"test": "jest -i --coverage",
"build": "tsc && tsc --declaration --emitDeclarationOnly"
},
"author": "",
"license": "ISC",
"devDependencies": {
"@swc/jest": "^0.2.20",
"@types/jest": "^27.0.3",
"@typescript-eslint/eslint-plugin": "^5.7.0",
"@typescript-eslint/parser": "^5.7.0",
"eslint": "^8.5.0",
"eslint-config-prettier": "^8.3.0",
"jest": "^27.5.1",
"prettier": "2.5.1",
"ts-jest": "^27.1.2",
"typescript": "^3.9.10"
},
"homepage": "https://github.com/Trixt0r/ecsts"
}