forked from fritzy/ape-ecs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
49 lines (49 loc) · 1.72 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
{
"name": "ape-ecs",
"version": "1.0.1",
"description": "Ape-ECS (Apex) Entity-Component-System library for simulation and game development.",
"main": "./src/index.js",
"types": "./src/index.d.ts",
"source": true,
"files": [
"/src"
],
"scripts": {
"test": "nyc npm run test_only",
"test_only": "cross-env TS_NODE_FILES=true mocha --exit --require ts-node/register --colors tests/*.ts",
"testp": "mocha tests/index.js",
"coverage": "nyc report --reporter=text-lcov | coveralls",
"md": "jsdoc2md src/ecs.js",
"webbench": "webpack-dev-server",
"check-links": "markdown-link-check README.md && markdown-link-check docs/API_Reference.md && markdown-link-check docs/Component.md && markdown-link-check docs/Entity.md && markdown-link-check docs/Entity_Refs.md && markdown-link-check docs/Overview.md && markdown-link-check docs/Patterns.md && markdown-link-check docs/Query.md && markdown-link-check docs/System.md && markdown-link-check docs/World.md"
},
"repository": {
"type": "git",
"url": "git+https://github.com/fritzy/ecs-js.git"
},
"author": "Nathanael Fritz",
"license": "MIT",
"bugs": {
"url": "https://github.com/fritzy/ape-ecs/issues"
},
"homepage": "https://github.com/fritzy/ape-ecs#readme",
"dependencies": {
"markdown-link-check": "^3.8.3"
},
"devDependencies": {
"@hapi/eslint-plugin-hapi": "^4.3.5",
"@types/chai": "^4.2.12",
"@types/mocha": "^8.0.3",
"@types/node": "^14.6.1",
"chai": "^4.2.0",
"coveralls": "^3.1.0",
"cross-env": "^7.0.2",
"mocha": "^8.1.2",
"nyc": "^15.1.0",
"ts-node": "^9.0.0",
"typescript": "^4.0.2",
"webpack": "^4.43.0",
"webpack-cli": "^3.3.11",
"webpack-dev-server": "^3.11.0"
}
}