-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
39 lines (39 loc) · 915 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
{
"name": "jest-plugin-fs",
"version": "2.9.0",
"description": "Jest plugin for mocking out the filesystem.",
"license": "MIT",
"author": "Mark Miyashita <[email protected]>",
"homepage": "https://github.com/negativetwelve/jest-plugins",
"repository": "https://github.com/negativetwelve/jest-plugins/tree/master/packages/jest-plugin-fs",
"keywords": [
"filesystem",
"fs",
"jest",
"jest-plugin",
"mock",
"plugin",
"test"
],
"main": "build/fs",
"files": [
"build",
"mock.js",
"setup.js"
],
"dependencies": {
"memfs": "^2.5.5"
},
"peerDependencies": {
"jest": "*"
},
"devDependencies": {
"fs-extra": "^4.0.1",
"jest-plugin-set": "^2.9.0"
},
"scripts": {
"build": "babel src --out-dir build --ignore \"**/__tests__/**\"",
"clean": "rimraf build",
"prepublishOnly": "yarn run clean && yarn run build"
}
}