Skip to content
This repository was archived by the owner on Oct 18, 2018. It is now read-only.

Commit c4779a3

Browse files
Hoang Chau KhanhHoang Chau Khanh
authored andcommitted
Intial project with basic files
0 parents  commit c4779a3

File tree

4 files changed

+94
-0
lines changed

4 files changed

+94
-0
lines changed

.vscode/settings.json

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
// Place your settings in this file to overwrite default and user settings.
2+
{
3+
// The number of spaces a tab is equal to.
4+
"editor.tabSize": 2,
5+
6+
// When enabled, will trim trailing whitespace when you save a file.
7+
"files.trimTrailingWhitespace": true,
8+
9+
// Configure glob patterns for excluding files and folders in searches. Inherits all glob patterns from the files.exclude setting.
10+
"search.exclude": {
11+
"**/node_modules": true,
12+
"dist": true
13+
},
14+
15+
// disable ESLint in Ember.js project
16+
"eslint.enable": false
17+
}

LICENSE

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
MIT License
2+
3+
Copyright (c) 2016 Khanh Hoang
4+
5+
Permission is hereby granted, free of charge, to any person obtaining a copy
6+
of this software and associated documentation files (the "Software"), to deal
7+
in the Software without restriction, including without limitation the rights
8+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9+
copies of the Software, and to permit persons to whom the Software is
10+
furnished to do so, subject to the following conditions:
11+
12+
The above copyright notice and this permission notice shall be included in all
13+
copies or substantial portions of the Software.
14+
15+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21+
SOFTWARE.

jsconfig.json

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
{
2+
// See https://go.microsoft.com/fwlink/?LinkId=759670
3+
// for the documentation about the jsconfig.json format
4+
"compilerOptions": {
5+
"target": "es6",
6+
"module": "commonjs",
7+
"allowSyntheticDefaultImports": true
8+
},
9+
"exclude": [
10+
"node_modules"
11+
]
12+
}

package.json

Lines changed: 44 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,44 @@
1+
{
2+
"name": "react-tree",
3+
"version": "0.0.0",
4+
"description": "The react component to present data as a tree",
5+
"main": ".",
6+
"scripts": {
7+
"start": "webpack-dev-server --port=3000",
8+
"test": "."
9+
},
10+
"repository": {
11+
"type": "git",
12+
"url": "git+https://github.com/hckhanh/react-tree.git"
13+
},
14+
"keywords": [
15+
"react",
16+
"js",
17+
"tree",
18+
"react-tree",
19+
"tree-view"
20+
],
21+
"author": "Khanh Hoang (https://profiles.udacity.com/u/khanhhoang)",
22+
"license": "MIT",
23+
"bugs": {
24+
"url": "https://github.com/hckhanh/react-tree/issues"
25+
},
26+
"homepage": "https://github.com/hckhanh/react-tree#readme",
27+
"peerDependencies": {
28+
"react": "^15.3.0",
29+
"react-dom": "^15.3.0"
30+
},
31+
"devDependencies": {
32+
"babel-core": "^6.13.2",
33+
"babel-loader": "^6.2.4",
34+
"babel-preset-es2015": "^6.13.2",
35+
"babel-preset-react": "^6.11.1",
36+
"jstree": "^3.3.1",
37+
"webpack": "^1.13.1",
38+
"webpack-dev-server": "^1.14.1"
39+
},
40+
"dependencies": {
41+
"react": "^15.3.0",
42+
"react-dom": "^15.3.0"
43+
}
44+
}

0 commit comments

Comments
 (0)