X-Git-Url: https://git.r.bdr.sh/rbdr/serpentity/blobdiff_plain/509e372f9ccbc49344493fdb36b2afb17103f4da..b3b840f89948d96aa28760fc5cf41c384488f6a6:/package.json diff --git a/package.json b/package.json index 9443ed4..a2d2521 100644 --- a/package.json +++ b/package.json @@ -1,30 +1,37 @@ { - "name": "serpentity", - "description": "A simple entity framework inspired by ash", - "version": "0.1.7", + "name": "@serpentity/serpentity", + "description": "An Entity-Component-System Engine", + "version": "2.0.0-alpha2", "contributors": [ { - "name": "Ben Beltran", + "name": "Rubén Beltrán del Río", "email": "ben@nsovocal.com", - "url": "http://nsovocal.com" + "url": "https://unlimited.pizza" } ], "repository": { "type": "git", - "url": "https://github.com/benbeltran/serpentity.git" - }, - "dependencies": { - "neon": "2.0.x" + "url": "https://github.com/serpentity/serpentity.git" }, + "dependencies": {}, "devDependencies": { - "colors": "0.6.2", - "tellurium": "2.0.x", - "gulp-uglify": "~0.3.1", - "gulp": "~3.8.7", - "gulp-concat": "~2.3.4" + "babel-core": "^6.24.1", + "babel-loader": "^6.4.1", + "babel-preset-es2015": "^6.24.1", + "code": "^4.0.0", + "eslint": "^3.19.0", + "eslint-config-hapi": "^10.0.0", + "eslint-plugin-hapi": "^4.0.0", + "lab": "^13.0.1", + "webpack": "^2.3.3" }, "engines": { - "node": ">= 0.10.0" + "node": ">= 6.0.0" + }, + "scripts": { + "build": "webpack --config ./config/webpack.js", + "lint": "eslint lib", + "test": "lab" }, - "main": "./lib/serpentity/serpentity.js" + "main": "./lib/serpentity.js" }