X-Git-Url: https://git.r.bdr.sh/rbdr/serpentity/blobdiff_plain/eecd25c9188b5c045d89aa26d1d367dd5131d88f..3d7e85099e73ff77fbd56515d0538c5a0ab60f1e:/package.json diff --git a/package.json b/package.json index 573eb9d..3a1c9ad 100644 --- a/package.json +++ b/package.json @@ -1,27 +1,34 @@ { - "name": "serpentity", - "description": "A simple entity framework inspired by ash", - "version": "0.1.3", + "name": "@serpentity/serpentity", + "description": "An Entity-Component-System Engine", + "version": "3.0.2", + "type": "module", + "license": "Apache-2.0", "contributors": [ { - "name": "Ben Beltran", - "email": "ben@nsovocal.com", - "url": "http://nsovocal.com" + "name": "Rubén Beltrán del Río", + "email": "subscriptions@unlimited.pizza", + "url": "https://unlimited.pizza" } ], "repository": { "type": "git", - "url": "https://github.com/benbeltran/serpentity.git" + "url": "https://gitlab.com/serpentity/serpentity.git" }, "dependencies": { - "neon": "2.0.x" + "events": "^3.1.0" }, "devDependencies": { - "colors": "0.6.2", - "tellurium": "2.0.x" + "@hapi/eslint-config-hapi": "^13.0.2", + "@hapi/eslint-plugin-hapi": "^4.3.5", + "eslint": "^8.44.0" }, "engines": { - "node": ">= 0.10.0" + "node": ">= 20.0.0" }, - "main": "./lib/serpentity/serpentity.js" + "scripts": { + "lint": "eslint lib", + "test": "node test/integration.js" + }, + "main": "./lib/serpentity.js" }