]> git.r.bdr.sh - rbdr/serpentity/blob - package.json
Bump version, require node 13, use cjs webpack
[rbdr/serpentity] / package.json
1 {
2 "name": "@serpentity/serpentity",
3 "description": "An Entity-Component-System Engine",
4 "version": "3.0.2",
5 "type": "module",
6 "license": "Apache-2.0",
7 "contributors": [
8 {
9 "name": "Rubén Beltrán del Río",
10 "email": "subscriptions@unlimited.pizza",
11 "url": "https://unlimited.pizza"
12 }
13 ],
14 "repository": {
15 "type": "git",
16 "url": "https://gitlab.com/serpentity/serpentity.git"
17 },
18 "dependencies": {
19 "events": "^3.1.0"
20 },
21 "devDependencies": {
22 "@hapi/code": "^8.0.1",
23 "@hapi/eslint-config-hapi": "^13.0.2",
24 "@hapi/eslint-plugin-hapi": "^4.3.5",
25 "@hapi/lab": "^22.0.3",
26 "@babel/core": "^7.8.7",
27 "@babel/preset-env": "^7.8.7",
28 "babel-loader": "8.0.6",
29 "eslint": "^6.8.0",
30 "webpack": "^4.42.0",
31 "webpack-cli": "^3.3.11"
32 },
33 "engines": {
34 "node": ">= 13.0.0"
35 },
36 "scripts": {
37 "build": "webpack --config ./config/webpack.cjs",
38 "lint": "eslint lib",
39 "test": "node test/integration.js"
40 },
41 "main": "./lib/serpentity.js"
42 }