-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.22 KB
/
package.json
File metadata and controls
46 lines (46 loc) · 1.22 KB
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
{
"name": "artemis-ts",
"version": "0.0.2",
"description": "artemis-ts is a port of the artemis ECS game engine to typescript",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"scripts": {
"lint": "eslint . --ext .ts --fix",
"build": "tsc",
"test": "echo 'Error: no test specified' && exit 1",
"prepare": "npm run build",
"prepublishOnly": "npm run lint",
"preversion": "npm run lint",
"version": "npm run format && git add -A src",
"postversion": "git push && git push --tags"
},
"repository": {
"type": "git",
"url": "git+https://github.com/rhazn/artemis-ts.git"
},
"keywords": [
"game",
"gamedev",
"engine",
"artemis",
"ecs"
],
"author": "Philip Heltweg <pheltweg@gmail.com> (https://rhazn.com/)",
"license": "MIT",
"files": [
"lib/**/*"
],
"bugs": {
"url": "https://github.com/rhazn/artemis-ts/issues"
},
"homepage": "https://github.com/rhazn/artemis-ts#readme",
"devDependencies": {
"@typescript-eslint/eslint-plugin": "2.6.0",
"@typescript-eslint/parser": "2.6.0",
"eslint": "6.6.0",
"eslint-config-prettier": "6.5.0",
"eslint-plugin-prettier": "3.1.1",
"prettier": "1.18.2",
"typescript": "3.6.4"
}
}