]> git.r.bdr.sh - rbdr/serpentity/blobdiff - package.json
Bump version, require node 13, use cjs webpack
[rbdr/serpentity] / package.json
index 0b50871dc6d1dd646a8bbb74fff017d035e68cad..f0d4d5b35ea80b1d73c6061b65334e9356dd3755 100644 (file)
@@ -1,30 +1,42 @@
 {
-  "name": "serpentity",
-  "description": "A simple entity framework inspired by ash",
-  "version": "1.0.0-alpha1",
+  "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/rbdr/serpentity.git"
+    "url": "https://gitlab.com/serpentity/serpentity.git"
   },
   "dependencies": {
+    "events": "^3.1.0"
   },
   "devDependencies": {
-    "babel-preset-es2015": "6.6.x",
-    "gulp": "3.9.x",
-    "gulp-babel": "6.1.x",
-    "gulp-concat": "2.6.x",
-    "gulp-rename": "1.2.x",
-    "gulp-uglify": "1.5.x"
+    "@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": ">= 4.0.0"
+    "node": ">= 13.0.0"
+  },
+  "scripts": {
+    "build": "webpack --config ./config/webpack.cjs",
+    "lint": "eslint lib",
+    "test": "node test/integration.js"
   },
   "main": "./lib/serpentity.js"
 }