-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
123 lines (123 loc) · 3.02 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
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
{
"private": true,
"name": "openmoney-network",
"version": "1.0.0",
"description": "A client side app that uses the openmoney network.",
"author": "Dominique Legault",
"license": "Apache-2.0",
"browserify": {
"transform": [
"browserify-shim"
]
},
"browser": {
"jquery": "./node_modules/jquery/dist/jquery.min.js",
"jquery-ui": "./node_modules/jquery-ui/jquery-ui.js",
"jquery.inputmask": "./node_modules/jquery.inputmask/dist/inputmask/jquery.inputmask.js",
"jquery-validation": "./node_modules/jquery-validation/dist/jquery.validate.js",
"backbone": "./node_modules/backbone/backbone.js",
"underscore": "./node_modules/underscore/underscore.js",
"toolkit": "./public/assets/dashboard/toolkit.min.js",
"jquery.browser": "./node_modules/jquery.browser/dist/jquery.browser.min.js",
"datatables": "./public/assets/datatables/datatables.min.js",
"backbone.basicauth": "./node_modules/backbone.basicauth/backbone.basicauth.js",
"Blob": "./public/assets/js/Blob.js",
"fruitdown": "./public/assets/js/pouchdb.fruitdown.js"
},
"browserify-shim": {
"jquery": "global:jQuery",
"jquery-ui": {
"depends": [
"jquery:jQuery"
]
},
"jquery.inputmask": {
"depends": [
"jquery:jQuery"
]
},
"jquery-validation": {
"depends": [
"jquery:jQuery"
]
},
"underscore": "_",
"backbone": {
"exports": "Backbone",
"depends": [
"jquery-validation",
"jquery-ui/core",
"underscore"
]
},
"toolkit": {
"depends": [
"jquery:$"
]
},
"datatables": {
"exports": "$.DataTable",
"depends": [
"jquery:jQuery",
"jquery:$"
]
},
"backbone.basicauth": {
"exports": "Backbone.BasicAuth",
"depends": [
"backbone:Backbone",
"underscore:_"
]
},
"fruitdown": {
"exports": "PouchDB.fruitdown",
"depends": [
"pouchdb: PouchDB"
]
}
},
"main": "intex.html",
"scripts": {
"test": "mocha"
},
"keywords": [
"openmoney",
"gift",
"card",
"program",
"loyalty",
"open",
"source"
],
"dependencies": {
"async": "^1.5.2",
"backbone": "^1.3.3",
"backbone-pouch": "^1.5.0",
"backbone.basicauth": "^0.4.2",
"backbone.marionette": "^2.4.7",
"bootstrap": "^3.3.6",
"buffer": "^4.7.0",
"crypto": "0.0.3",
"file-saver": "^1.3.2",
"jquery": "^2.2.4",
"jquery-ui": "1.10.5",
"jquery-validation": "^1.15.0",
"jquery.browser": "^0.1.0",
"jquery.inputmask": "^3.3.1",
"node-rsa": "^0.4.1"
},
"devDependencies": {
"browserify": "^13.0.1",
"browserify-shim": "^3.8.12",
"chai": "^3.5.0",
"grunt": "^1.0.1",
"grunt-browserify": "^5.0.0",
"grunt-contrib-copy": "^1.0.0",
"grunt-contrib-handlebars": "^1.0.0",
"grunt-contrib-stylus": "^1.2.0",
"grunt-contrib-watch": "^1.0.0",
"grunt-mocha": "^1.0.2",
"mocha": "^2.5.3",
"sinon": "^1.17.4"
}
}