-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
83 lines (83 loc) · 2.16 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
{
"name": "editorsnotes",
"author": "Patrick Golden",
"private": true,
"dependencies": {
"backbone": "^1.1.2",
"backbone.cocktail": "^0.5.7",
"backbone.stickit": "^0.8.0",
"jquery": "^3.5.0",
"underscore": "^1.6.0",
"underscore-contrib": "^0.3.0",
"browserify": "^4.1.2",
"esprima":"",
"esprima-fb":""
},
"devDependencies": {
"browserify": "^4.1.2",
"browserify-shim": "^3.5.0",
"node-underscorify": "0.0.9",
"less": "^1.7.0",
"uglify-js": "^2.4.14",
"mocha": "^1.18.0",
"testling": "^1.6.1",
"sinon": "^1.9.0",
"brfs": "1.0.0",
"jedify": "0.0.1",
"watchify": "^0.9.0"
},
"browserify": {
"transform": [
"browserify-shim",
"node-underscorify",
"jedify",
"brfs"
]
},
"browser": {
"jquery-ui": "./editorsnotes_app/js/lib/jquery/jquery-ui-1.10.4.custom.js",
"jquery-ui-touch-punch": "./editorsnotes_app/js/lib/jquery/jquery.ui.touch-punch.js",
"jquery-timeago": "./editorsnotes_app/js/lib/jquery/jquery.timeago.js",
"jquery-bootstrap": "./editorsnotes_app/js/lib/jquery/bootstrap.min.js",
"jquery-babbq": "./editorsnotes_app/js/lib/jquery/jquery.ba-bbq.min.js",
"sinon-event": "sinon/lib/sinon/util/event",
"sinon-fakeserver": "sinon/lib/sinon/util/fake_server",
"sinon-fakexhr": "sinon/lib/sinon/util/fake_xml_http_request",
"wysihtml5": "./editorsnotes_app/js/lib/wysihtml5/wysihtml5-0.3.0.min.js"
},
"browserify-shim": {
"jquery-ui": {
"depends": "jquery"
},
"jquery-ui-touch-punch": {
"depends": "jquery"
},
"jquery-timeago": {
"depends": "jquery"
},
"jquery-bootstrap": {
"depends": "jquery"
},
"jquery-babbq": {
"depends": "jquery"
},
"wysihtml5": "wysihtml5",
"citeproc": "global:CSL",
"seadragon": "global:seadragon"
},
"testling": {
"harness": "mocha",
"files": "editorsnotes_app/js/test/*.js",
"browsers": [
"firefox/24..latest",
"chrome/latest",
"ie/10..latest",
"safari/6..latest",
"opera/latest",
"ipad/6..latest"
]
},
"scripts": {
"test": "mocha editorsnotes_app/js/test/*.js"
}
}