-
-
Notifications
You must be signed in to change notification settings - Fork 156
/
package.json
48 lines (48 loc) · 1.22 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
46
47
48
{
"name": "vinyl-fs",
"description": "Vinyl adapter for the file system",
"version": "0.3.13",
"homepage": "https://github.com/wearefractal/vinyl-fs",
"repository": "git://github.com/wearefractal/vinyl-fs.git",
"author": "Fractal <[email protected]> (http://wearefractal.com/)",
"main": "./index.js",
"files": [
"index.js",
"lib"
],
"dependencies": {
"defaults": "^1.0.0",
"glob-stream": "^3.1.5",
"glob-watcher": "^0.0.6",
"graceful-fs": "^3.0.0",
"mkdirp": "^0.5.0",
"strip-bom": "^1.0.0",
"through2": "^0.6.1",
"vinyl": "^0.4.0"
},
"devDependencies": {
"buffer-equal": "^0.0.1",
"coveralls": "^2.6.1",
"istanbul": "^0.3.0",
"jshint": "^2.4.1",
"mocha": "^2.0.0",
"mocha-lcov-reporter": "^0.0.1",
"rimraf": "^2.2.5",
"should": "^4.0.0",
"sinon": "^1.10.3"
},
"scripts": {
"test": "mocha --reporter spec && jshint lib",
"coveralls": "istanbul cover _mocha -- -R spec && cat ./coverage/lcov.info | coveralls && rm -rf ./coverage"
},
"engines": {
"node": ">= 0.10"
},
"engineStrict": true,
"licenses": [
{
"type": "MIT",
"url": "https://github.com/wearefractal/vinyl-fs/raw/master/LICENSE"
}
]
}