-
Notifications
You must be signed in to change notification settings - Fork 31
/
Copy pathpackage.json
52 lines (52 loc) · 1.88 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
{
"name": "ape-ecs",
"version": "1.3.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",
"build": "webpack --config ./build.webpack.config.js",
"md": "jsdoc2md src/ecs.js",
"prettier": "prettier --write src/",
"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/ape-ecs.git"
},
"author": "Nathanael Fritz",
"license": "MIT",
"bugs": {
"url": "https://github.com/fritzy/ape-ecs/issues"
},
"homepage": "https://github.com/fritzy/ape-ecs#readme",
"dependencies": {},
"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",
"html-webpack-plugin": "^4.5.0",
"markdown-link-check": "^3.8.3",
"mocha": "^8.1.2",
"nyc": "^15.1.0",
"prettier": "^2.2.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"
}
}