From 5fef6de33b4b9553ddaa1ade88e89b1faa7ab60a Mon Sep 17 00:00:00 2001 From: Xinxin Date: Thu, 9 Jan 2020 01:26:07 +0800 Subject: [PATCH 1/2] Initial commit --- LICENSE | 21 +++++++++++++++++++++ README.md | 2 ++ 2 files changed, 23 insertions(+) create mode 100644 LICENSE create mode 100644 README.md diff --git a/LICENSE b/LICENSE new file mode 100644 index 0000000..337f71c --- /dev/null +++ b/LICENSE @@ -0,0 +1,21 @@ +MIT License + +Copyright (c) 2020 Xinxin + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. diff --git a/README.md b/README.md new file mode 100644 index 0000000..9c00088 --- /dev/null +++ b/README.md @@ -0,0 +1,2 @@ +# he-tree-react +A draggable sortable nested react tree component. From de66b2fe424c2a93e35706fc181561cd6384c80b Mon Sep 17 00:00:00 2001 From: phphe Date: Thu, 9 Jan 2020 01:29:29 +0800 Subject: [PATCH 2/2] init --- package.json | 48 ++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 48 insertions(+) create mode 100644 package.json diff --git a/package.json b/package.json new file mode 100644 index 0000000..fa7f0ea --- /dev/null +++ b/package.json @@ -0,0 +1,48 @@ +{ + "name": "he-tree-react", + "version": "0.0.1-beta", + "description": "A draggable sortable nested react tree component.", + "main": "dist/he-tree-react.cjs.js", + "module": "dist/he-tree-react.esm.js", + "files": [ + "dist" + ], + "unpkg": "dist/he-tree-react.js", + "author": "phphe (https://github.com/phphe)", + "homepage": "https://he-tree-react.phphe.com", + "bugs": { + "url": "https://github.com/phphe/he-tree-react/issues" + }, + "repository": { + "type": "git", + "url": "https://github.com/phphe/he-tree-react.git" + }, + "scripts": { + "dev": "vue-cli-service serve", + "build:web": "vue-cli-service build", + "test:unit": "vue-cli-service test:unit", + "build": "node scripts/build.js", + "build:pro": "node scripts/build-pro.js" + }, + "dependencies": { + "@babel/runtime": "^7.7.7", + "draggable-helper": "^4.0.0", + "helper-js": "^1.4.26", + "vue-functions": "^2.0.1", + "vue-runtime-helpers": "^1.1.2" + }, + "devDependencies": { + "@vue/cli-plugin-babel": "^4.1.0", + "@vue/cli-service": "^4.1.0", + "bili": "^4.8.1", + "minimist": "^1.2.0", + "pug": "^2.0.4", + "pug-plain-loader": "^1.0.0", + "rollup-plugin-vue": "5.1.1", + "sass": "^1.23.7", + "sass-loader": "^8.0.0", + "vue": "^2.6.10", + "vue-template-compiler": "^2.6.10" + }, + "license": "MIT" +}