-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathpackage.json
36 lines (36 loc) · 921 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": "browserify-incremental",
"version": "3.1.1",
"description": "Fast incremental rebuilds for browserify",
"main": "index.js",
"bin": {
"browserifyinc": "./bin/cmd.js"
},
"scripts": {
"test": "npm run lint && tap test",
"lint": "eslint .",
"lint-fix": "eslint . --fix"
},
"author": "James Friend <[email protected]> (http://jsdf.co/)",
"license": "MIT",
"homepage": "https://github.com/jsdf/browserify-incremental",
"bugs": "https://github.com/jsdf/browserify-incremental/issues",
"repository": {
"type": "git",
"url": "git://github.com/jsdf/browserify-incremental.git"
},
"dependencies": {
"JSONStream": "^0.10.0",
"browserify-cache-api": "^3.0.0",
"through2": "^2.0.0",
"xtend": "^4.0.0"
},
"peerDependencies": {
"browserify": "*"
},
"devDependencies": {
"browserify": "^13.0.0",
"eslint": "2.4.0",
"tap": "^5.7.0"
}
}