UNPKG

1.2 kBJSONView Raw
1{
2 "name": "vinyl",
3 "version": "3.0.0",
4 "description": "Virtual file format.",
5 "author": "Gulp Team <team@gulpjs.com> (https://gulpjs.com/)",
6 "contributors": [
7 "Eric Schoffstall <yo@contra.io>",
8 "Blaine Bublitz <blaine.bublitz@gmail.com>"
9 ],
10 "repository": "gulpjs/vinyl",
11 "license": "MIT",
12 "engines": {
13 "node": ">=10.13.0"
14 },
15 "main": "index.js",
16 "files": [
17 "LICENSE",
18 "index.js",
19 "lib"
20 ],
21 "scripts": {
22 "lint": "eslint .",
23 "pretest": "npm run lint",
24 "test": "nyc mocha --async-only"
25 },
26 "dependencies": {
27 "clone": "^2.1.2",
28 "clone-stats": "^1.0.0",
29 "remove-trailing-separator": "^1.1.0",
30 "replace-ext": "^2.0.0",
31 "teex": "^1.0.1"
32 },
33 "devDependencies": {
34 "eslint": "^7.32.0",
35 "eslint-config-gulp": "^5.0.1",
36 "eslint-plugin-node": "^11.1.0",
37 "expect": "^27.4.6",
38 "mocha": "^8.4.0",
39 "nyc": "^15.1.0",
40 "readable-stream": "^3.6.0",
41 "streamx": "^2.12.5"
42 },
43 "nyc": {
44 "reporter": [
45 "lcov",
46 "text-summary"
47 ]
48 },
49 "prettier": {
50 "singleQuote": true
51 },
52 "keywords": [
53 "virtual",
54 "filesystem",
55 "file",
56 "directory",
57 "stat",
58 "path"
59 ]
60}