-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
58 lines (58 loc) · 1.59 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
57
58
{
"name": "uecs",
"version": "0.4.2",
"description": "Micro ECS",
"author": "Jan Procházka",
"license": "MIT",
"homepage": "https://github.com/jprochazk/uecs",
"repository": {
"type": "git",
"url": "git+https://github.com/jprochazk/uecs.git"
},
"bugs": {
"url": "https://github.com/jprochazk/uecs/issues"
},
"keywords": [
"ecs",
"entity",
"component",
"system"
],
"main": "dist/index.cjs.js",
"module": "dist/index.esm.js",
"browser": "dist/index.umd.js",
"types": "dist/index.d.ts",
"files": [
"/dist",
"LICENSE",
"README.md"
],
"scripts": {
"test": "jest",
"build": "rollup -c",
"prepare": "npm run build",
"build-docs": "typedoc src/index.ts --readme none --out docs/generated",
"lint": "eslint"
},
"devDependencies": {
"@rollup/plugin-commonjs": "^15.1.0",
"@rollup/plugin-json": "^4.1.0",
"@rollup/plugin-node-resolve": "^9.0.0",
"@types/benchmark": "^2.1.0",
"@types/jest": "^26.0.20",
"@typescript-eslint/eslint-plugin": "^4.14.1",
"@typescript-eslint/parser": "^4.14.1",
"benchmark": "^2.1.4",
"eslint": "^7.18.0",
"jest": "^26.6.3",
"rollup": "^2.38.0",
"rollup-plugin-terser": "^7.0.2",
"rollup-plugin-typescript2": "^0.27.3",
"ts-jest": "^26.4.4",
"ts-node": "^9.1.1",
"tslib": "^2.1.0",
"typedoc": "^0.20.19",
"typescript": "^4.1.3"
},
"dependencies": {}
}