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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
|
{
"name": "jqtree",
"version": "1.3.7",
"description": "Tree widget for jQuery",
"keywords": [
"jquery-plugin",
"tree"
],
"license": "Apache-2.0",
"main": "lib/tree.jquery.js",
"repository": {
"type": "git",
"url": "https://github.com/mbraak/jqtree"
},
"scripts": {
"test": "karma start --browsers Chrome --single-run && coffeelint src",
"build": "gulp",
"watch": "gulp watch",
"karma": "karma start --browsers Chrome"
},
"dependencies": {
"jquery": ">=1.9"
},
"devDependencies": {
"browserify": "^13.3.0",
"coffee-script": "^1.12.2",
"coffeeify": "^2.1.0",
"connect": "^3.5.0",
"coveralls": "^2.11.15",
"gulp": "^3.9.1",
"gulp-coffee": "^2.3.3",
"gulp-coffeeify": "0.1.8",
"gulp-coffeelint": "^0.6.0",
"gulp-header": "^1.8.8",
"gulp-rename": "^1.2.2",
"gulp-sass": "^3.1.0",
"ie-version": "^0.1.0",
"jquery-mockjax": "^2.2.1",
"karma": "^1.3.0",
"karma-browserify": "^5.1.0",
"karma-chrome-launcher": "^2.0.0",
"karma-cli": "^1.0.1",
"karma-firefox-launcher": "^1.0.0",
"karma-phantomjs-launcher": "^1.0.2",
"karma-qunit": "^1.2.1",
"phantomjs-prebuilt": "^2.1.14",
"qunitjs": "^2.1.1",
"serve-static": "^1.11.1",
"watchify": "^3.8.0"
}
}
|