-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
77 lines (77 loc) · 1.87 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
{
"name": "spyfs",
"version": "1.0.2",
"description": "Filesystem spy",
"main": "lib/index.js",
"keywords": [
"fs",
"spy",
"filesystem",
"fs.js",
"file",
"file system",
"test",
"testing",
"mock"
],
"repository": {
"type": "git",
"url": "https://github.com/streamich/spyfs.git"
},
"dependencies": {
"fs-monkey": "0.4.0"
},
"devDependencies": {
"mocha": "11.0.1",
"chai": "5.1.2",
"typescript": "5.7.3",
"ts-node": "10.9.2",
"babel-cli": "6.26.0",
"babel-polyfill": "6.26.0",
"babel-preset-stage-0": "6.24.1",
"babel-preset-es2015": "6.24.1",
"babel-preset-es2016": "6.24.1",
"babel-preset-es2017": "6.24.1",
"babel-preset-flow": "6.23.0",
"gulp": "5.0.0",
"gulp-typescript": "5.0.1",
"source-map-support": "0.5.21",
"nyc": "17.1.0",
"watch": "1.0.2",
"memfs": "4.17.0"
},
"nyc": {
"per-file": true,
"include": [
"src/**/*.js"
],
"exclude": [
"src/**/*.test.js"
],
"extension": [
".js"
],
"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 --compilers js:babel-core/register --require babel-polyfill src/**/*.test.js",
"test-watch-js": "mocha --compilers js:babel-core/register --require babel-polyfill src/**/*.test.js --watch",
"test-coverage-ts": "nyc --per-file mocha --compilers js:babel-core/register --require babel-polyfill --require source-map-support/register --full-trace --bail src/**/*.test.js",
"watch": "watch 'npm run build' ./src"
}
}