Skip to content

Commit

Permalink
Publicação da versão v0.5.0
Browse files Browse the repository at this point in the history
  • Loading branch information
nidorx committed Dec 16, 2019
1 parent 944caff commit 98e437e
Show file tree
Hide file tree
Showing 4 changed files with 81 additions and 78 deletions.
154 changes: 77 additions & 77 deletions package.json
@@ -1,80 +1,80 @@
{
"name": "ecs-lib",
"version": "0.4.0",
"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 <contato@alexrodin.info>",
"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"
"name": "ecs-lib",
"version": "0.5.0",
"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 <contato@alexrodin.info>",
"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"
],
"exclude": [
"*.*",
"**/*.d.ts",
"example/**/*.*",
"coverage/**/*.*",
"test/**/*.*"
"keywords": [
"ecs",
"ecs-framework",
"entity-component",
"entity-component-system",
"entity",
"game",
"game-engine",
"gamedev",
"game-development",
"game-ecs",
"gameloop",
"threejs"
],
"reporter": [
"html",
"lcov",
"text-summary"
],
"all": true
}
}
"nyc": {
"extension": [
".ts",
".tsx"
],
"exclude": [
"*.*",
"**/*.d.ts",
"example/**/*.*",
"coverage/**/*.*",
"test/**/*.*"
],
"reporter": [
"html",
"lcov",
"text-summary"
],
"all": true
}
}
1 change: 1 addition & 0 deletions test/ECS.test.d.ts
@@ -0,0 +1 @@
export {};
1 change: 1 addition & 0 deletions test/Iterator.test.d.ts
@@ -0,0 +1 @@
export {};
3 changes: 2 additions & 1 deletion tsconfig.json
Expand Up @@ -30,6 +30,7 @@
"exclude": [
"node_modules",
"dist",
"example"
"example",
"test"
]
}

0 comments on commit 98e437e

Please sign in to comment.