From 582cea2aedd3b5763232837cc4960f07223908fb Mon Sep 17 00:00:00 2001 From: Ben Beltran Date: Mon, 9 Mar 2020 14:22:58 -0500 Subject: Transfer components to lib repo --- package.json | 37 +++++++++++++++++++++++++++++++++++++ 1 file changed, 37 insertions(+) create mode 100644 package.json (limited to 'package.json') 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" + } +} -- cgit