-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.26 KB
/
package.json
File metadata and controls
53 lines (53 loc) · 1.26 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
53
{
"name": "@nealrame/ecs",
"version": "0.0.1",
"description": "Typescript Entity Component System library",
"main": "./dist/index.js",
"scripts": {
"build": "./scripts/build.sh",
"clean": "./scripts/clean.sh",
"dev": "vite src/tests/app",
"test": "./scripts/test.sh",
"watch-test": "npm-watch test"
},
"watch": {
"test": {
"patterns": [
"src/lib/**/*",
"src/tests/**/*"
],
"extensions": "ts",
"quiet": true
}
},
"repository": {
"type": "git",
"url": "git+https://github.com/NealRame/ecs.git"
},
"keywords": [
"ECS"
],
"author": "Julien Graziano <julien@graziano.fr>",
"license": "MIT",
"bugs": {
"url": "https://github.com/NealRame/ecs/issues"
},
"homepage": "https://github.com/NealRame/ecs#readme",
"devDependencies": {
"@nealrame/ts-gamepad-api": "^0.1.0",
"@types/chai": "^4.3.3",
"@types/mocha": "^10.0.0",
"@typescript-eslint/eslint-plugin": "^5.48.1",
"@typescript-eslint/parser": "^5.48.1",
"chai": "^4.3.6",
"eslint": "^8.32.0",
"mocha": "^10.1.0",
"npm-watch": "^0.11.0",
"typescript": "^4.8.4",
"vite": "^4.0.4"
},
"dependencies": {
"@nealrame/ts-events": "^3.0.1",
"@nealrame/ts-injector": "^0.4.0"
}
}