82f2b76e25
We now use webpack instead of SystemJS, effectively bundling modules into one file (plus commons chunks) for every entry point. This results in a much smaller extension size (almost half). Furthermore we use yarn/npm even for extension run-time dependencies. This relieves us from manually vendoring and building dependencies. It's also easier to understand for new developers familiar with node.
57 lines
1.3 KiB
JSON
57 lines
1.3 KiB
JSON
{
|
|
"name": "vinyl",
|
|
"version": "2.0.2",
|
|
"description": "Virtual file format.",
|
|
"author": "Gulp Team <team@gulpjs.com> (http://gulpjs.com/)",
|
|
"contributors": [
|
|
"Eric Schoffstall <yo@contra.io>",
|
|
"Blaine Bublitz <blaine.bublitz@gmail.com>"
|
|
],
|
|
"repository": "gulpjs/vinyl",
|
|
"license": "MIT",
|
|
"engines": {
|
|
"node": ">= 0.10"
|
|
},
|
|
"main": "index.js",
|
|
"files": [
|
|
"LICENSE",
|
|
"index.js",
|
|
"lib"
|
|
],
|
|
"scripts": {
|
|
"lint": "eslint . && jscs index.js lib/ test/",
|
|
"pretest": "npm run lint",
|
|
"test": "mocha --async-only",
|
|
"cover": "istanbul cover _mocha --report lcovonly",
|
|
"coveralls": "npm run cover && istanbul-coveralls"
|
|
},
|
|
"dependencies": {
|
|
"clone": "^1.0.0",
|
|
"clone-buffer": "^1.0.0",
|
|
"clone-stats": "^1.0.0",
|
|
"cloneable-readable": "^1.0.0",
|
|
"is-stream": "^1.1.0",
|
|
"remove-trailing-separator": "^1.0.1",
|
|
"replace-ext": "^1.0.0"
|
|
},
|
|
"devDependencies": {
|
|
"eslint": "^1.7.3",
|
|
"eslint-config-gulp": "^2.0.0",
|
|
"expect": "^1.20.2",
|
|
"istanbul": "^0.4.3",
|
|
"istanbul-coveralls": "^1.0.3",
|
|
"jscs": "^2.3.5",
|
|
"jscs-preset-gulp": "^1.0.0",
|
|
"mississippi": "^1.2.0",
|
|
"mocha": "^2.4.5"
|
|
},
|
|
"keywords": [
|
|
"virtual",
|
|
"filesystem",
|
|
"file",
|
|
"directory",
|
|
"stat",
|
|
"path"
|
|
]
|
|
}
|