-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
65 lines (65 loc) · 1.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
{
"name": "what-todo",
"version": "0.0.1",
"description": "Todo list application built with Backbone.js",
"main": "js/app.js",
"repository": {
"type": "git",
"url": "https://github.com/ackl/what-todo.git"
},
"dependencies": {
"backbone": "1.1.2",
"backbone.localstorage": "1.1.13",
"bootstrap": "^3.2.0",
"jquery": "1.11.1",
"jquery-ui": "ackl/jquery-ui",
"jquery-ui-touch-punch": "ackl/jquery-ui-touch-punch",
"underscore": "1.6.0"
},
"author": "Andrew Low",
"license": "BSD-2-Clause",
"bugs": {
"url": "https://github.com/ackl/what-todo/issues"
},
"devDependencies": {
"browserify": "<5",
"browserify-shim": "3.6.0",
"gulp": "^3.8.7",
"gulp-streamify": "0.0.5",
"gulp-uglify": "^0.3.2",
"jasmine-node": "1.14.5",
"karma-browserify": "0.2.1",
"karma-cli": "0.0.4",
"karma-jasmine": "0.1.5",
"karma-phantomjs-launcher": "~0.1",
"node-underscorify": "0.0.11",
"vinyl-source-stream": "^0.1.1",
"watchify": "0.8.1"
},
"browserify": {
"transform": [
"browserify-shim",
"node-underscorify"
]
},
"browser": {
"jquery-ui": "./node_modules/jquery-ui/dist/jquery-ui.js",
"jquery-ui-touch-punch": "./node_modules/jquery-ui-touch-punch/jquery.ui.touch-punch.js",
"bootstrap": "./node_modules/bootstrap/dist/js/bootstrap.js"
},
"browserify-shim": {
"jquery-ui": {
"depends": "jquery"
},
"jquery-ui-touch-punch": {
"depends": "jquery"
},
"bootstrap": {
"exports": "bootstrap",
"depends": "jquery"
}
},
"scripts": {
"test": "gulp test"
}
}