forked from streamich/memfs
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
82 lines (82 loc) · 1.89 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
77
78
79
80
81
82
{
"name": "memfs",
"version": "2.5.3",
"description": "In-memory file-system with Node's fs API.",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"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.2.1"
},
"devDependencies": {
"mocha": "3.4.2",
"chai": "4.1.0",
"typescript": "2.4.2",
"ts-node": "3.3.0",
"babel-cli": "6.24.1",
"babel-preset-es2015": "6.24.1",
"gulp": "3.9.1",
"gulp-typescript": "3.2.1",
"source-map-support": "0.4.15",
"nyc": "11.1.0",
"watch": "^1.0.0",
"@types/mocha": "2.2.41",
"@types/chai": "4.0.1",
"@types/node": "8.0.17"
},
"nyc": {
"per-file": true,
"include": [
"src/**/*.ts"
],
"exclude": [
"src/**/*.test.ts"
],
"extension": [
".ts"
],
"require": [
"ts-node/register"
],
"reporter": [
"text",
"json",
"lcov",
"text-summary"
],
"sourceMap": true,
"instrument": true,
"cache": true
},
"scripts": {
"build": "npm run build-ts && npm run build-js",
"build-ts": "gulp build-ts",
"build-js": "babel src --out-dir lib",
"test": "npm run test-basic-js",
"test-basic-js": "mocha lib/**/**/**/*.test.js",
"test-basic-ts": "mocha --require ts-node/register src/**/**/**/*.test.ts",
"test-watch-ts": "mocha --require ts-node/register src/**/**/**/*.test.ts --watch",
"test-coverage-ts": "nyc --per-file mocha --require ts-node/register --require source-map-support/register --full-trace --bail src/**/**/**/*.test.ts",
"watch": "watch 'npm run build' ./src"
}
}