-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
51 lines (51 loc) · 1.3 KB
/
package.json
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
46
47
48
49
50
51
{
"name": "aurora",
"version": "2.1.3",
"description": "A small entity-component-system game engine/framework.",
"keywords": [
"entity-component-system",
"game-engine",
"javascript",
"node",
"nodejs",
"real-time-strategy",
"rts"
],
"author": "Ian Paschal",
"license": "MIT",
"homepage": "https://github.com/ianpaschal/aurora#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/ianpaschal/aurora.git"
},
"bugs": {
"url": "https://github.com/ianpaschal/aurora/issues"
},
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"scripts": {
"compile": "tsc --declaration",
"docs": "typedoc --options typedoc.json",
"lint": "eslint --fix --ext .ts src/** tests/**",
"test": "jest --silent --config jest.json"
},
"dependencies": {
"deepmerge": "^2.1.0",
"present": "^1.0.0",
"uuid": "^3.2.1"
},
"devDependencies": {
"@types/deepmerge": "^2.1.0",
"@types/jest": "^23.3.1",
"@types/uuid": "^3.4.3",
"babel-eslint": "^8.2.1",
"eslint": "^4.17.0",
"eslint-plugin-import": "^2.9.0",
"jest": "^24.8.0",
"ts-jest": "^23.10.4",
"typedoc": "^0.15.0",
"typedoc-plugin-external-module-name": "^1.1.3",
"typescript": "^3.0.1",
"typescript-eslint-parser": "^18.0.0"
}
}