forked from SBoudrias/mem-fs-editor
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
43 lines (43 loc) · 965 Bytes
/
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
{
"name": "mem-fs-editor",
"version": "5.0.0",
"description": "File edition helpers working on top of mem-fs",
"scripts": {
"pretest": "eslint .",
"test": "jest"
},
"repository": "SBoudrias/mem-fs-editor",
"author": "Simon Boudrias",
"license": "MIT",
"main": "lib/index.js",
"files": [
"lib"
],
"dependencies": {
"commondir": "^1.0.1",
"deep-extend": "^0.6.0",
"ejs": "^2.5.9",
"glob": "^7.0.3",
"globby": "^8.0.1",
"isbinaryfile": "^3.0.2",
"mkdirp": "^0.5.0",
"multimatch": "^2.0.0",
"rimraf": "^2.2.8",
"through2": "^2.0.0",
"vinyl": "^2.0.1"
},
"devDependencies": {
"coveralls": "^3.0.0",
"escape-regexp": "0.0.1",
"eslint": "^5.0.1",
"eslint-config-xo-space": "^0.19.0",
"jest": "^23.2.0",
"mem-fs": "^1.0.0",
"sinon": "^6.0.1"
},
"jest": {
"collectCoverage": true,
"coverageDirectory": "coverage",
"testEnvironment": "node"
}
}