summaryrefslogtreecommitdiff
path: root/package.json
diff options
context:
space:
mode:
authorBen Beltran <ben@nsovocal.com>2020-03-09 13:38:33 -0500
committerBen Beltran <ben@nsovocal.com>2020-03-09 13:38:33 -0500
commit6b3e4b4fb52e477f9f3c147127c2fd638baffd8a (patch)
treea2998b42917dce2e2d2be767349695ff84650edf /package.json
parent0ac5b46bdc5086ded3a93d3a7d68ca5ff77cddeb (diff)
parent5f26f629b590a26ca90f6be48b107d875343358c (diff)
Merge branch 'release/3.0.0'3.0.0
Diffstat (limited to 'package.json')
-rw-r--r--package.json38
1 files changed, 23 insertions, 15 deletions
diff --git a/package.json b/package.json
index e41927a..aa2c132 100644
--- a/package.json
+++ b/package.json
@@ -1,39 +1,47 @@
{
"name": "@serpentity/serpentity",
"description": "An Entity-Component-System Engine",
- "version": "2.1.0",
+ "version": "3.0.0",
+ "type": "module",
+ "license": "Apache-2.0",
"contributors": [
{
"name": "Rubén Beltrán del Río",
- "email": "ben@nsovocal.com",
+ "email": "subscriptions@unlimited.pizza",
"url": "https://unlimited.pizza"
}
],
"repository": {
"type": "git",
- "url": "https://github.com/serpentity/serpentity.git"
+ "url": "https://gitlab.com/serpentity/serpentity.git"
},
"dependencies": {
- "events": "^2.0.0"
+ "events": "^3.1.0"
},
"devDependencies": {
- "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"
+ "@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": ">= 6.0.0"
+ "node": ">= 12.0.0"
},
+ "browserslist": [
+ "last 2 versions",
+ "not IE",
+ "not IE_mob"
+ ],
"scripts": {
"build": "webpack --config ./config/webpack.js",
"lint": "eslint lib",
- "test": "lab"
+ "test": "node test/integration.js"
},
"main": "./lib/serpentity.js"
}