forked from joaonuno/tree-model-js
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 1.05 KB
/
package.json
File metadata and controls
36 lines (36 loc) · 1.05 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
{
"name": "ls-tree-model",
"version": "1.0.5",
"description": "Manipulate and traverse tree-like structures in javascript.",
"keywords": [
"tree",
"hierarchy",
"browser",
"node",
"requirejs"
],
"homepage": "https://github.com/lukasstankiewicz/tree-model-js",
"repository": "https://github.com/lukasstankiewicz/tree-model-js",
"bugs": "https://github.com/lukasstankiewicz/tree-model-js/issues",
"license": "MIT",
"author": "João Nuno Silva <jnss81@gmail.com> (http://jnuno.com)",
"main": "TreeModel.js",
"scripts": {
"test": "mocha",
"lint": "jshint index.js test/test.js && jscs index.js test/test.js",
"dist": "mkdir -p dist && browserify index.js -o dist/TreeModel.js -s TreeModel && uglifyjs dist/TreeModel.js > dist/TreeModel-min.js"
},
"devDependencies": {
"mocha": "2.3.3",
"sinon": "1.17.1",
"chai": "3.3.0",
"browserify": "11.2.0",
"uglify-js": "2.4.24",
"jshint": "2.8.0",
"jscs": "2.2.1"
},
"dependencies": {
"mergesort": "0.0.1",
"find-insert-index": "0.0.1"
}
}