-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 839 Bytes
/
Copy pathpackage.json
File metadata and controls
35 lines (35 loc) · 839 Bytes
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
{
"name": "vendorify",
"version": "0.1.1",
"description": "Bundle node_modules dependencies into separate file",
"main": "index.js",
"bin": "bin/cmd.js",
"scripts": {
"prepublish": "eslint .",
"test": "tape test.js | tap-difflet"
},
"keywords": [
"browserify",
"browserify-plugin",
"browserify-tool",
"bundle"
],
"author": "Dmitry Tyschenko",
"license": "MIT",
"devDependencies": {
"browserify": "^13.1.1",
"eslint": "^3.7.1",
"tap-difflet": "^0.7.0",
"tape": "^4.6.2"
},
"dependencies": {
"browser-pack": "^6.0.1",
"through2": "^2.0.1"
},
"peerDependencies": {
"browserify": "*"
},
"repository": "github:rainydio/vendorify.git",
"bugs": "https://github.com/rainydio/vendorify/issues",
"homepage": "https://github.com/rainydio/vendorify#readme"
}