-
Notifications
You must be signed in to change notification settings - Fork 33
/
Copy pathpackage.json
104 lines (104 loc) · 2.69 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
{
"name": "autotune",
"description": "Platform and UI for creating new websites and html snippets from templates stored in git repos.",
"version": "0.7.19",
"homepage": "https://github.com/voxmedia/autotune",
"author": {
"name": "Ryan Mark",
"email": "[email protected]"
},
"repository": {
"type": "git",
"url": "https://github.com/voxmedia/autotune.git"
},
"bugs": {
"url": "https://github.com/voxmedia/autotune/issues"
},
"licenses": [
{
"type": "BSD",
"url": "https://github.com/voxmedia/autotune/blob/master/LICENSE-BSD"
}
],
"keywords": [],
"main": "appjs/app",
"engines": {
"node": ">= 0.10.0"
},
"scripts": {
"lint": "grunt jshint",
"watch": "watchify --verbose --poll --debug appjs/app.js -o app/assets/javascripts/autotune/application.js",
"build": "browserify --debug appjs/app.js > app/assets/javascripts/autotune/application.js",
"test": "./bin/run_test_server"
},
"dependencies": {
"alpaca": "git://github.com/voxmedia/alpaca.git#dev",
"backbone": "1.2.3",
"backbone.paginator": "^2.0.2",
"bootstrap": "3.3.2",
"brace": "0.5.1",
"brace-expansion": "1.1.7",
"browserify": "5.12.1",
"browserify-shim": "3.8.0",
"moment": "2.19.3",
"moment-timezone": "^0.4.0",
"eonasdan-bootstrap-datetimepicker": "^4.15.35",
"handlebars": "4.0.5",
"html2hscript": "^2.0.1",
"jquery": "3.2.1",
"jquery-ui": "1.10.5",
"markdown": "0.5.0",
"node-underscorify": "0.0.14",
"pnotify": "git://github.com/sciactive/pnotify.git#2.1.0",
"pym.js": "1.2.0",
"selectize": "^0.12.4",
"spectrum-colorpicker": "git://github.com/bgrins/spectrum.git#9e04e5882de98cb9f909300b035d0f38c058c2fb",
"tinycolor2": "^1.3.0",
"underscore": "1.8.3",
"underscore.string": "3.0.3",
"virtual-dom": "^2.1.1"
},
"devDependencies": {
"browser-run": ">=2.6.2",
"glob": "^5.0.15",
"grunt": "0.4.5",
"grunt-cli": "0.1.13",
"grunt-contrib-jshint": "1.1.0",
"grunt-contrib-watch": "0.6.1",
"grunt-jscs": "^1.8.0",
"grunt-notify": "0.4.5",
"tap-spec": "^4.1.0",
"tape": "^4.2.1",
"tape-catch": "^1.0.4",
"watchify": "^3.4.0"
},
"browser": {
"bootstrap": "./node_modules/bootstrap/dist/js/bootstrap.js"
},
"browserify": {
"transform": [
[
"node-underscorify",
{
"extensions": [
"ejs"
],
"requires": [
{
"variable": "_",
"module": "underscore"
}
]
}
],
"browserify-shim"
]
},
"browserify-shim": {
"bootstrap": {
"depends": [
"jquery:jQuery"
]
}
}
}