forked from NSSTC/sim-ecs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
32 lines (32 loc) · 809 Bytes
/
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
{
"name": "sim-ecs",
"version": "0.3.0",
"license": "MPL 2.0",
"repository": "https://github.com/NSSTC/sim-ecs.git",
"main": "src/index.ts",
"keywords": [
"ecs",
"entity",
"component",
"system",
"simulation",
"sim",
"sim-ecs"
],
"devDependencies": {
"@types/chai": "^4.2.12",
"@types/mocha": "^8.0.3",
"chai": "^4.2.0",
"mocha": "^8.1.3",
"nyc": "^15.1.0",
"ts-node": "^9.0.0",
"tslib": "^2.0.1",
"typescript": "^4.0.2"
},
"scripts": {
"bench": "ts-node -P tsconfig.json examples/bench.ts",
"coverage": "nyc -r lcov -e .ts -x \"**/*.test.ts\" -x \"**/*.spec.ts\" -x \"src/tests\" npm run test",
"counter": "ts-node -P tsconfig.json examples/counter.ts",
"test": "mocha -r ts-node/register src/**/*.test.ts"
}
}