]> git.r.bdr.sh - rbdr/serpentity/blame_incremental - package.json
Use browserslist defaults
[rbdr/serpentity] / package.json
... / ...
CommitLineData
1{
2 "name": "@serpentity/serpentity",
3 "description": "An Entity-Component-System Engine",
4 "version": "3.0.1",
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": ">= 12.0.0"
35 },
36 "browserslist": [
37 "defaults"
38 ],
39 "scripts": {
40 "build": "webpack --config ./config/webpack.js",
41 "lint": "eslint lib",
42 "test": "node test/integration.js"
43 },
44 "main": "./lib/serpentity.js"
45}