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