forked from humanmade/modular-page-builder
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
36 lines (36 loc) · 791 Bytes
/
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
{
"name": "modular-page-builder",
"version": "0.0.1",
"main": "Gruntfile.js",
"author": "Human Made Limited",
"license": "GPL V2",
"devDependencies": {
"browserify": "^8.1.3",
"browserify-shim": "^3.8.3",
"grunt": "^0.4.5",
"grunt-autoprefixer": "^3.0.3",
"grunt-browserify": "^3.4.0",
"grunt-contrib-jshint": "^0.11.3",
"grunt-contrib-watch": "^0.6.1",
"grunt-phpcs": "^0.4.0",
"grunt-sass": "^1.0.0",
"remapify": "1.4.3"
},
"browserify": {
"transform": [
"browserify-shim"
]
},
"browserify-shim": {
"jquery": "global:jQuery",
"wp": "global:wp",
"underscore": "global:_",
"backbone": {
"exports": "global:Backbone",
"depends": [
"jquery",
"underscore"
]
}
}
}