-
Notifications
You must be signed in to change notification settings - Fork 146
/
package.json
57 lines (57 loc) · 1.19 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
{
"name": "grunt-browserify",
"description": "Grunt task for node-browserify",
"version": "6.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/"
],
"license": "MIT",
"main": "tasks/browserify.js",
"engines": {
"node": ">= 8.10.x"
},
"scripts": {
"test": "mocha -R spec --timeout 5000"
},
"dependencies": {
"async": "^2.5.0",
"browserify": "^17.0.0",
"browserify-incremental": "^3.1.1",
"glob": "^7.1.2",
"lodash": "^4.17.4",
"resolve": "^1.1.6",
"watchify": "^4.0.0"
},
"devDependencies": {
"grunt": "^1.0.1",
"grunt-cli": "^1.2.0",
"grunt-contrib-clean": "^1.1.0",
"grunt-contrib-jshint": "^1.1.0",
"mocha": "^3.5.0",
"sinon": "^3.2.0"
},
"keywords": [
"gruntplugin",
"browserify",
"grunt"
]
}