forked from jmreidy/grunt-browserify
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
61 lines (61 loc) · 1.27 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
{
"name": "grunt-browserify",
"description": "Grunt task for node-browserify",
"version": "5.0.0",
"homepage": "https://github.com/jmreidy/grunt-browserify",
"contributors": [
{
"name": "Justin Reidy",
"email": "jmreidy@rzrsharp.net"
},
{
"name": "Tommy Leunen",
"email": "tommy.leunen@gmail.com"
}
],
"repository": {
"type": "git",
"url": "git://github.com/jmreidy/grunt-browserify.git"
},
"bugs": {
"url": "https://github.com/jmreidy/grunt-browserify/issues"
},
"files": [
"lib/",
"tasks/"
],
"licenses": [
{
"type": "MIT",
"url": "https://github.com/jmreidy/grunt-browserify/blob/master/LICENSE-MIT"
}
],
"main": "tasks/browserify.js",
"engines": {
"node": ">= 0.8.x"
},
"scripts": {
"test": "mocha -R spec --timeout 5000"
},
"dependencies": {
"async": "^1.5.0",
"browserify": "^13.1.1",
"glob": "^6.0.3",
"lodash": "^3.10.1",
"resolve": "^1.1.6",
"watchify": "^3.6.1"
},
"devDependencies": {
"grunt": "^0.4.5",
"grunt-cli": "^0.1.13",
"grunt-contrib-clean": "^0.7.0",
"grunt-contrib-jshint": "^0.11.3",
"mocha": "^2.3.4",
"sinon": "^1.17.2"
},
"keywords": [
"gruntplugin",
"browserify",
"grunt"
]
}