X-Git-Url: https://git.r.bdr.sh/rbdr/serpentity/blobdiff_plain/361790b48d015aea9d024b4e6ea7fd160ebcdb6f..62bc93dd77eacab028c45f831e0746f64de8dd46:/package.json diff --git a/package.json b/package.json index d546847..f0d4d5b 100644 --- a/package.json +++ b/package.json @@ -1,26 +1,42 @@ { - "name" : "serpentity", - "description" : "A simple entity frameowrk inspired by ash", - "version" : "0.1.2", - "contributors" : [ + "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" + "repository": { + "type": "git", + "url": "https://gitlab.com/serpentity/serpentity.git" }, - "dependencies" : { - "neon" : "2.0.x" + "dependencies": { + "events": "^3.1.0" }, - "devDependencies" : { - "colors" : "0.6.2", - "tellurium" : "2.0.x" + "devDependencies": { + "@hapi/code": "^8.0.1", + "@hapi/eslint-config-hapi": "^13.0.2", + "@hapi/eslint-plugin-hapi": "^4.3.5", + "@hapi/lab": "^22.0.3", + "@babel/core": "^7.8.7", + "@babel/preset-env": "^7.8.7", + "babel-loader": "8.0.6", + "eslint": "^6.8.0", + "webpack": "^4.42.0", + "webpack-cli": "^3.3.11" }, - "engines" : { "node" : ">= 0.10.0" }, - "main" : "./lib/serpentity/serpentity.js" + "engines": { + "node": ">= 13.0.0" + }, + "scripts": { + "build": "webpack --config ./config/webpack.cjs", + "lint": "eslint lib", + "test": "node test/integration.js" + }, + "main": "./lib/serpentity.js" } -