aboutsummaryrefslogtreecommitdiff
path: root/package.json
blob: 683ffe7a0af4c9c730a67d6fc854f03412b053a4 (plain)
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
{
  "name": "@serpentity/serpentity",
  "description": "An Entity-Component-System Engine",
  "version": "2.1.0-alpha1",
  "contributors": [
    {
      "name": "Rubén Beltrán del Río",
      "email": "ben@nsovocal.com",
      "url": "https://unlimited.pizza"
    }
  ],
  "repository": {
    "type": "git",
    "url": "https://github.com/serpentity/serpentity.git"
  },
  "dependencies": {
    "events": "^2.0.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"
  },
  "engines": {
    "node": ">= 6.0.0"
  },
  "scripts": {
    "build": "webpack --config ./config/webpack.js",
    "lint": "eslint lib",
    "test": "lab"
  },
  "main": "./lib/serpentity.js"
}