1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
|
{
"name": "@serpentity/serpentity",
"description": "An Entity-Component-System Engine",
"version": "3.0.1",
"type": "module",
"license": "Apache-2.0",
"contributors": [
{
"name": "Rubén Beltrán del Río",
"email": "subscriptions@unlimited.pizza",
"url": "https://unlimited.pizza"
}
],
"repository": {
"type": "git",
"url": "https://gitlab.com/serpentity/serpentity.git"
},
"dependencies": {
"events": "^3.1.0"
},
"devDependencies": {
"@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": ">= 12.0.0"
},
"browserslist": [
"defaults"
],
"scripts": {
"build": "webpack --config ./config/webpack.js",
"lint": "eslint lib",
"test": "node test/integration.js"
},
"main": "./lib/serpentity.js"
}
|