-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.1 KB
/
package.json
File metadata and controls
44 lines (44 loc) · 1.1 KB
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
{
"name": "browserify-dev-bundler",
"version": "2.0.0",
"description": "On-demand browserify bundler middleware for development with watchify support",
"main": "index.js",
"scripts": {
"test": "mocha test",
"coverage": "istanbul cover --report html node_modules/.bin/_mocha",
"coveralls": "istanbul cover ./node_modules/mocha/bin/_mocha --report lcovonly -- && cat ./coverage/lcov.info | coveralls"
},
"repository": {
"type": "git",
"url": "git://github.com/selfcontained/browserify-dev-bundler.git"
},
"keywords": [
"browserify",
"watchify",
"bundler",
"middleware",
"on demand",
"development"
],
"author": "Brad Harris <bmharris@gmail.com> (http://selfcontained.us)",
"license": "MIT",
"files": [
"index.js",
"lib"
],
"dependencies": {
"deap": "~1.0.0",
"watchify": "^2.1.1",
"browserify": "^6.1.0"
},
"devDependencies": {
"chai": "^1.9.1",
"mocha": "^1.18.2",
"istanbul": "^0.2.8",
"express": "^4.1.2",
"supertest": "^0.12.1",
"jadeify": "^2.1.1",
"jade": "^1.3.1",
"coveralls": "^2.10.0"
}
}