-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
51 lines (51 loc) · 1.22 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
{
"name": "bandstand",
"version": "0.1.0",
"description": "Bandstand",
"homepage": "https://audiotheme.com/",
"license": "GPL-2.0+",
"repository": "audiotheme/bandstand",
"main": "Gruntfile.js",
"dependencies": {
"cuebone": "github:audiotheme/cuebone#develop"
},
"devDependencies": {
"autoprefixer": "^6.3.1",
"browserify-shim": "^3.8.12",
"grunt": "^1.0.1",
"grunt-browserify": "^5.0.0",
"grunt-contrib-compress": "^1.3.0",
"grunt-contrib-cssmin": "^1.0.2",
"grunt-contrib-jshint": "^1.1.0",
"grunt-contrib-uglify": "^2.0.0",
"grunt-contrib-watch": "^1.0.0",
"grunt-jscs": "^3.0.1",
"grunt-postcss": "^0.8.0",
"grunt-sass": "^2.0.0",
"grunt-string-replace": "^1.2.1",
"grunt-wp-i18n": "^0.5.3",
"load-grunt-config": "^0.19.1",
"lodash": "^4.12.0",
"remapify": "^2.1.0",
"strictify": "^0.2.0",
"time-grunt": "^1.3.0"
},
"browserify-shim": {
"backbone": {
"exports": "global:Backbone",
"depends": [
"jquery",
"underscore"
]
},
"jquery": "global:jQuery",
"underscore": "global:_",
"wp": "global:wp"
},
"browserify": {
"transform": [
"browserify-shim",
"strictify"
]
}
}