-
Notifications
You must be signed in to change notification settings - Fork 14
/
package.json
95 lines (95 loc) · 2.61 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
95
{
"name": "ryocdr",
"version": "0.0.11",
"description": "Ryo CDR: Asterisk CDR viewer",
"main": "app.js",
"scripts": {
"watch": "watchify public/js/main.js -o public/js/build/bundle.js -v",
"watch-dbg": "watchify public/js/main.js -d -o public/js/build/bundle.js -v",
"build": "browserify public/js/main.js -o public/js/build/bundle.js",
"build-dbg": "browserify public/js/main.js -d -o public/js/build/bundle.js",
"test": "semistandard"
},
"repository": "https://github.com/antirek/ryocdr.git",
"author": "Serge Dmitriev <[email protected]>",
"license": "MIT",
"dependencies": {
"backbone": "1.1.2",
"backbone.marionette": "^2.4.2",
"bluebird": "^2.9.0",
"body-parser": "^1.13.3",
"bookshelf": "^0.8.0",
"compression": "^1.5.0",
"cookie-parser": "^1.3.0",
"cookie-session": "^1.2.0",
"express": "^4.13.0",
"express-session": "^1.11.0",
"file-exists": "^1.0.0",
"glob": "^5.0.0",
"http-auth": "^2.2.8",
"joi": "^7.0.1",
"jquery": "~2.1.1",
"knex": "^0.8.0",
"lodash": "^3.10.0",
"moment": "^2.10.0",
"morgan": "^1.6.0",
"mysql": "^2.9.0",
"node-underscorify": "0.0.14",
"spin.js": "^2.3.2",
"underscore": "^1.8.0"
},
"devDependencies": {
"browserify": "^11.0.0",
"browserify-shim": "^3.8.0",
"semistandard": "^7.0.2"
},
"browserify": {
"transform": [
[
"node-underscorify",
{
"extensions": [
"html",
"ejs"
],
"requires": [
{
"variable": "_",
"module": "underscore"
}
]
}
],
"browserify-shim"
]
},
"browser": {
"audiojs": "./bower_components/audiojs/audiojs/audio.js",
"bootstrap-daterangepicker": "./bower_components/bootstrap-daterangepicker/daterangepicker.js",
"bootstrap-datepicker": "./public/js/vendor/bootstrap-datepicker.js",
"bootstrap-select": "./bower_components/bootstrap-select/bootstrap-select.js",
"backgrid-paginator": "./public/js/vendor/backgrid-paginator.js",
"backbone.paginator": "./bower_components/backbone.paginator/lib/backbone.paginator.js",
"backgrid": "./bower_components/backgrid/lib/backgrid.js",
"bootstrap": "./bower_components/bootstrap/dist/js/bootstrap.js"
},
"browserify-shim": {
"audiojs": "audiojs",
"bootstrap-select": {
"depends": [
"jquery:jQuery",
"bootstrap"
]
},
"bootstrap": {
"depends": [
"jquery:jQuery"
]
}
},
"semistandard": {
"ignore": [
"public/js/vendor/"
]
}
}