-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
94 lines (94 loc) · 2 KB
/
package.json
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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
{
"name": "_tree",
"main": "./dist/_tree.min.js",
"version": "0.6.1",
"description": "_tree is a Javascript library that helps you generate immutable tree data structures.",
"author": "A.J. Heller",
"license": "MIT",
"keywords": [
"tree",
"data structure",
"model",
"wrapper",
"graph"
],
"homepage": "http://tree.drfloob.com/",
"repository": {
"type": "git",
"url": "https://github.com/drfloob/_tree.git"
},
"bugs": {
"url": "https://github.com/drfloob/_tree/issues"
},
"dependencies": {
"underscore": "~1.5.2"
},
"devDependencies": {
"grunt": "~0.4.1",
"grunt-contrib-jshint": "~0.7.0",
"grunt-contrib-uglify": "~0.2.4",
"grunt-compare-size": "~0.4.0",
"grunt-contrib-jasmine": "~0.5.2",
"grunt-contrib-connect": "~0.5.0",
"grunt-template-jasmine-requirejs": "~0.1.7",
"jasmine-reporters": "larrymyers/jasmine-reporters.git",
"grunt-docco": "~0.3.0",
"requirejs": "~2.1.9",
"grunt-jsonlint": "~1.0.1",
"grunt-benchmark": "~0.2.0",
"grunt-template-jasmine-istanbul": "~0.2.5",
"grunt-contrib-copy": "~0.4.1",
"grunt-markdown": "~0.4.0",
"grunt-jasmine-node": "~0.1.0",
"backbone": "~1.1.1",
"grunt-bump": "0.0.13"
},
"scripts": {
"test": "grunt jasmine_node --verbose"
},
"testling": {
"scripts": [
"test/vendor/jasmine.js",
"test/vendor/jasmine-html.js",
"test/vendor/jasmine.tap_reporter.js",
"test/vendor/underscore-min.js",
"src/_tree.js",
"test/helper/*.js",
"test/spec/*.js",
"test/ling/jasmine_bootstrap.js"
],
"browsers": {
"ie": [
8,
9,
10
],
"firefox": [
24,
23,
"nightly"
],
"chrome": [
29,
28,
27
],
"safari": [
5.1
],
"iphone": [
6
],
"ipad": [
6
],
"opera": [
12,
15
],
"android-browser": [
4.2
]
}
}
}