├── .gitignore ├── .npmignore ├── .travis.yml ├── LICENSE ├── README.md ├── index.js ├── package.json ├── src ├── tree.js └── tree.test.js └── yarn.lock /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftcarrot/js-tree/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- 1 | src 2 | yarn.lock 3 | coverage 4 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftcarrot/js-tree/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftcarrot/js-tree/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftcarrot/js-tree/HEAD/README.md -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- 1 | module.exports = require('./dist/tree'); 2 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftcarrot/js-tree/HEAD/package.json -------------------------------------------------------------------------------- /src/tree.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftcarrot/js-tree/HEAD/src/tree.js -------------------------------------------------------------------------------- /src/tree.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftcarrot/js-tree/HEAD/src/tree.test.js -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftcarrot/js-tree/HEAD/yarn.lock --------------------------------------------------------------------------------