-
Notifications
You must be signed in to change notification settings - Fork 11
/
package.json
80 lines (80 loc) · 2.19 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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
{
"name": "ecs-lib",
"version": "0.8.0-pre.2",
"description": "Tiny and easy to use ECS (Entity Component System) library for game programming and much more",
"main": "index.js",
"scripts": {
"test": "nyc mocha",
"coverage": "nyc report --reporter=text-lcov | coveralls",
"build": "npm run-script build-ts && npm run-script build-js",
"build-js": "browserify src/index.ts -p [ tsify --emitDeclarationOnly=false ] -s ecs-lib > index.js",
"build-ts": "tsc -p tsconfig.json",
"publish-lib": "node v-release.js && node publish.js",
"publish-lib-snapshot": "node v-snapshot.js && node publish.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/nidorx/ecs-lib.git"
},
"author": "Alex Rodin <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/nidorx/ecs-lib/issues"
},
"homepage": "https://github.com/nidorx/ecs-lib#readme",
"devDependencies": {
"@istanbuljs/nyc-config-typescript": "0.1.3",
"@types/chai": "4.2.7",
"@types/mocha": "5.2.7",
"@types/node": "12.12.17",
"browserify": "16.5.0",
"chai": "4.2.0",
"coveralls": "3.0.9",
"mocha": "6.2.2",
"nyc": "14.1.1",
"semver": "6.3.0",
"source-map-support": "0.5.16",
"ts-node": "8.5.4",
"tsify": "4.0.1",
"typescript": "3.7.3"
},
"files": [
"index.js",
"index.d.ts",
"LICENSE",
"README.md"
],
"keywords": [
"ecs",
"ecs-framework",
"entity-component",
"entity-component-system",
"entity",
"game",
"game-engine",
"gamedev",
"game-development",
"game-ecs",
"gameloop",
"threejs"
],
"nyc": {
"extension": [
".ts",
".tsx"
],
"exclude": [
"*.*",
"**/*.d.ts",
"example/**/*.*",
"coverage/**/*.*",
"test/**/*.*"
],
"reporter": [
"html",
"lcov",
"text-summary"
],
"all": true
}
}