-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (45 loc) · 1.14 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
{
"name": "common-bundle",
"version": "0.5.0",
"description": "A browserify plugin for packing modules into common shared bundles.",
"main": "index.js",
"dependencies": {
"browser-pack": "^6.0.1",
"labeled-stream-splicer": "^2.0.0",
"mixy": "^1.0.0",
"multimatch": "^2.1.0",
"vinyl": "^1.1.1"
},
"devDependencies": {
"browserify": "^13.0.0",
"callback-sequence": "^3.2.0",
"del": "^2.2.0",
"eslint": "^2.1.0",
"tap": "^5.0.0",
"vinyl-fs": "^2.2.1"
},
"scripts": {
"test": "npm run lint && tap test/*.js",
"cov": "tap --cov test/*.js",
"lint": "eslint *.js 'lib/**/*.js' test/*.js bin/*.js",
"coveralls": "COVERALLS_REPO_TOKEN=3c49VUdFjbiNIAmdZKh4gwOIlq8wklLAV npm run cov"
},
"engines": {
"node": ">=0.12"
},
"repository": {
"type": "git",
"url": "git+https://github.com/reducejs/common-bundle.git"
},
"keywords": [
"browserify-plugin",
"common",
"bundle"
],
"author": "zoubin",
"license": "MIT",
"bugs": {
"url": "https://github.com/reducejs/common-bundle/issues"
},
"homepage": "https://github.com/reducejs/common-bundle#readme"
}