-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
54 lines (54 loc) · 1.16 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
{
"name": "trecs",
"version": "0.2.0",
"description": "A TypeScript-first Entity Component System library.",
"keywords": [
"component",
"entities",
"entity",
"game",
"system"
],
"author": [
{
"name": "Brandon Valosek",
"email": "bvalosek@gmail.com",
"url": "http://brandon.is/awesome",
"role": "original author of tiny-ecs"
},
{
"name": "Stephen Whitmore",
"email": "sww@eight45.net",
"url": "http://eight45.net",
"role": "mad forker"
},
{
"name": "Hakeem Badran",
"url": "http://hakeembadran.com",
"role": "neutral forker"
}
],
"scripts": {
"build": "rm -rf lib/ && npx tsc",
"clean": "rm -rf lib/",
"test": "jest --coverage --verbose"
},
"main": "lib/index.js",
"types": "lib/index.d.ts",
"license": "MIT",
"devDependencies": {
"@babel/preset-env": "^7.16.11",
"@babel/preset-typescript": "^7.16.7",
"@types/jest": "^27.4.1",
"jest": "^27.5.1",
"ts-jest": "^27.1.3",
"typescript": "^4.5.5"
},
"repository": {
"type": "git",
"url": "git@github.com:hak33m16/trecs.git"
},
"files": [
"/lib"
]
}