From 0421d808e9c3a1de8ef2d7a035dc22220543c791 Mon Sep 17 00:00:00 2001 From: "pengfei.zhou" Date: Mon, 15 Jul 2019 17:56:24 +0800 Subject: [PATCH] add js framework --- js-framework/.gitignore | 1 + js-framework/package-lock.json | 5 +++++ js-framework/package.json | 19 +++++++++++++++++++ 3 files changed, 25 insertions(+) create mode 100644 js-framework/.gitignore create mode 100644 js-framework/package-lock.json create mode 100644 js-framework/package.json diff --git a/js-framework/.gitignore b/js-framework/.gitignore new file mode 100644 index 00000000..40b878db --- /dev/null +++ b/js-framework/.gitignore @@ -0,0 +1 @@ +node_modules/ \ No newline at end of file diff --git a/js-framework/package-lock.json b/js-framework/package-lock.json new file mode 100644 index 00000000..cb380b79 --- /dev/null +++ b/js-framework/package-lock.json @@ -0,0 +1,5 @@ +{ + "name": "hego-jsframework", + "version": "0.1.0", + "lockfileVersion": 1 +} diff --git a/js-framework/package.json b/js-framework/package.json new file mode 100644 index 00000000..48286ae7 --- /dev/null +++ b/js-framework/package.json @@ -0,0 +1,19 @@ +{ + "name": "hego-jsframework", + "version": "0.1.0", + "description": "The JS Framework of Hego", + "main": "index.js", + "scripts": { + "test": "echo \"Error: no test specified\" && exit 1" + }, + "repository": { + "type": "git", + "url": "git+https://github.com/penfeizhou/hego.git" + }, + "author": "pengfeizhou", + "license": "Apache-2.0", + "bugs": { + "url": "https://github.com/penfeizhou/hego/issues" + }, + "homepage": "https://github.com/penfeizhou/hego#readme" +}