diff options
| author | Ben Beltran <ben@nsovocal.com> | 2020-03-09 14:22:58 -0500 |
|---|---|---|
| committer | Ben Beltran <ben@nsovocal.com> | 2020-03-09 14:22:58 -0500 |
| commit | 582cea2aedd3b5763232837cc4960f07223908fb (patch) | |
| tree | aaa3721fe01f4177ba5937f709ca53dd96887b07 /package.json | |
| parent | 8d90115ac567adb5a3c61eefd27ab675fb3c0ef7 (diff) | |
Transfer components to lib repo
Diffstat (limited to 'package.json')
| -rw-r--r-- | package.json | 37 |
1 files changed, 37 insertions, 0 deletions
diff --git a/package.json b/package.json new file mode 100644 index 0000000..a0522a3 --- /dev/null +++ b/package.json @@ -0,0 +1,37 @@ +{ + "name": "@serpentity/lib", + "version": "1.0.0", + "description": "Shared components for Serpentity", + "main": "index.js", + "scripts": { + "test": "echo \"Error: no test specified\" && exit 1" + }, + "repository": { + "type": "git", + "url": "git+ssh://git@gitlab.com/serpentity/lib.git" + }, + "keywords": [ + "ecs", + "serpentity", + "games", + "entity", + "component", + "system" + ], + "author": "Rubén Beltrán del Río", + "license": "Apache-2.0", + "bugs": { + "url": "https://gitlab.com/serpentity/lib/issues" + }, + "homepage": "https://gitlab.com/serpentity/lib#readme", + "devDependencies": { + "lerna": "^3.20.2" + }, + "dependencies": { + "@serpentity/components.acceleration": "file:components/acceleration", + "@serpentity/components.debug": "file:components/debug", + "@serpentity/components.position": "file:components/position", + "@serpentity/components.velocity": "file:components/velocity", + "@serpentity/components.weight": "file:components/weight" + } +} |