forked from jmreidy/grunt-browserify
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
54 lines (54 loc) · 1.13 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
{
"name": "grunt-browserify",
"description": "Grunt task for node-browserify",
"version": "3.0.1",
"homepage": "https://github.com/jmreidy/grunt-browserify",
"contributors": [
{
"name": "Justin Reidy",
"email": "[email protected]"
}
],
"repository": {
"type": "git",
"url": "git://github.com/jmreidy/grunt-browserify.git"
},
"bugs": {
"url": "https://github.com/jmreidy/grunt-browserify/issues"
},
"licenses": [
{
"type": "MIT",
"url": "https://github.com/jmreidy/grunt-browserify/blob/master/LICENSE-MIT"
}
],
"main": "grunt.js",
"engines": {
"node": ">= 0.8.x"
},
"scripts": {
"test": "mocha -R spec --timeout 5000"
},
"dependencies": {
"lodash": "^2.4",
"async": "^0.7",
"watchify": "^1.0.1",
"resolve": "^0.6",
"glob": "^3.2",
"browserify": "^5.9.1"
},
"devDependencies": {
"grunt-contrib-jshint": "0.1.x",
"grunt-contrib-clean": "~0.4.0",
"sinon": "~1.9.0",
"mocha": "~1.18.0"
},
"peerDependencies": {
"grunt": "~0.4.0"
},
"keywords": [
"gruntplugin",
"browserify",
"grunt"
]
}