forked from streamich/memfs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
76 lines (76 loc) · 1.6 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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
{
"name": "memfs",
"version": "2.10.0",
"description": "In-memory file-system with Node's fs API.",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"files": [
"lib"
],
"keywords": [
"fs",
"filesystem",
"fs.js",
"memory-fs",
"memfs",
"file",
"file system",
"mount",
"memory",
"in-memory",
"virtual",
"test",
"testing",
"mock"
],
"repository": {
"type": "git",
"url": "https://github.com/streamich/memfs.git"
},
"dependencies": {
"fast-extend": "0.0.2",
"fs-monkey": "^0.3.3"
},
"devDependencies": {
"@types/jest": "23.3.9",
"@types/node": "9.6.35",
"cpy-cli": "2.0.0",
"jest": "21.2.1",
"jest-tap-reporter": "1.9.0",
"mol-conventional-changelog": "1.4.0",
"rimraf": "2.6.2",
"semantic-release": "15.10.8",
"ts-jest": "23.1.4",
"ts-node": "7.0.1",
"typescript": "3.0.3"
},
"scripts": {
"clean": "rimraf lib types",
"build": "tsc -p . && cpy src/internal lib/internal",
"test": "jest",
"test:coverage": "jest --coverage",
"test:watch": "jest --watch",
"watch": "watch 'npm run build' ./src",
"semantic-release": "semantic-release"
},
"config": {
"commitizen": {
"path": "./node_modules/mol-conventional-changelog"
}
},
"jest": {
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"jsx"
],
"transform": {
"^.+\\.tsx?$": "<rootDir>/node_modules/ts-jest/preprocessor.js"
},
"testRegex": ".*/__tests__/.*\\.(test|spec)\\.(jsx?|tsx?)$",
"reporters": [
"jest-tap-reporter"
]
}
}