forked from naturalsolutions/apiExplorer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
62 lines (62 loc) · 1.47 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
{
"name": "apiExplorer",
"version": "0.1.0",
"description": "TODO",
"private": false,
"browser": {
"jquery-ns": "./vendors/ns/jquery-ns.js",
"lodash-ns": "./vendors/ns/lodash-ns.js",
"backbone": "./node_modules/backbone.marionette/node_modules/backbone/backbone.js",
"bootstrap": "./node_modules/bootstrap/dist/js/bootstrap.js"
},
"browserify": {
"transform": [
"browserify-shim"
]
},
"browserify-shim": {
"jquery-ns": {
"depends": [
"jquery:jQuery"
]
},
"lodash-ns": {
"depends": [
"lodash:_"
]
},
"bootstrap": {
"depends": [
"jquery:jQuery"
]
}
},
"devDependencies": {
"browserify": "^10.2.4",
"chai": "^3.4.0",
"grunt": "^0.4.5",
"grunt-browserify": "^3.8.0",
"grunt-config": "^0.4.0",
"grunt-contrib-clean": "^0.7.0",
"grunt-contrib-connect": "^0.10.1",
"grunt-contrib-copy": "^0.8.0",
"grunt-contrib-cssmin": "^0.13.0",
"grunt-contrib-jshint": "^0.11.2",
"grunt-contrib-less": "^1.0.1",
"grunt-contrib-uglify": "^0.9.2",
"grunt-contrib-watch": "^0.6.1",
"grunt-replace": "^0.11.0",
"grunt-simple-mocha": "^0.4.0",
"node-underscorify": "0.0.14"
},
"dependencies": {
"backbone.marionette": "^2.4.5",
"bootstrap": "^3.3.5",
"browserify-shim": "^3.8.9",
"i18next-client": "^1.10.3",
"jquery": "^2.1.4",
"lodash": "^4.6.1",
"moment": "^2.10.6",
"numeral": "^1.5.3"
}
}