-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
74 lines (74 loc) · 2.45 KB
/
package.json
File metadata and controls
74 lines (74 loc) · 2.45 KB
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
{
"name": "typefs",
"version": "1.1.4",
"description": "A file storage package that provides a single interface to many types of filesystems.",
"author": "Daniel Samson <12231216+daniel-samson@users.noreply.github.com>",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/daniel-samson/typefs"
},
"keywords": [
"filesystem",
"stream",
"buffer",
"s3"
],
"bugs": {
"url": "https://github.com/daniel-samson/typefs/issues"
},
"homepage": "https://daniel-samson.github.io/typefs",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"prepublish": "tsc",
"scripts": {
"pr": "npm run build && npm run lint && npm run test",
"clean": "tsc --build --clean",
"build": "tsc --build",
"watch": "tsc --watch",
"test": "npm run mocha",
"test-file-driver": "npm run mocha test/file-driver.test.ts",
"test-s3-driver": "npm run mocha test/s3-driver.test.ts",
"test-manual-file-driver": "mocha --config .mocharc.json test/manual/file-driver.test.ts",
"test-manual-s3-driver": "mocha --config .mocharc.json test/manual/s3-driver.test.ts",
"test-manual": "mocha --config .mocharc.json test/manual/*.test.ts",
"test-util": "npm run mocha test/util.test.ts",
"mocha": "mocha --config .mocharc.json",
"lint": "eslint . --ext .ts",
"fix": "eslint --fix --ext .ts .",
"eslint": "eslint",
"coverage": "npx nyc --reporter=html --reporter=text-summary npm test",
"coverage-ci": "nyc --reporter=lcov mocha --config .mocharc.json test/*.test.ts",
"audit": "npx audit-ci --moderate",
"codecov": "codecov"
},
"devDependencies": {
"@types/chai": "^5.2.3",
"@types/mocha": "^10.0.10",
"@types/mock-fs": "4.13.4",
"@types/node": "^24.10.1",
"@types/sinon": "^21.0.0",
"@typescript-eslint/eslint-plugin": "^8.49.0",
"@typescript-eslint/parser": "^8.49.0",
"audit-ci": "7.1.0",
"chai": "^6.2.1",
"eslint": "^8.57.1",
"eslint-config-airbnb-base": "15.0.0",
"eslint-import-resolver-typescript": "^4.4.4",
"eslint-plugin-import": "^2.32.0",
"eslint-plugin-jsdoc": "^61.5.0",
"eslint-plugin-mocha": "^10.5.0",
"eslint-plugin-sonarjs": "^3.0.5",
"install": "0.13.0",
"mocha": "^11.7.5",
"mock-fs": "^5.5.0",
"nyc": "^17.1.0",
"sinon": "^21.0.0",
"source-map-support": "0.5.21",
"ts-node": "^10.9.2",
"typescript": "^5.9.3"
},
"dependencies": {
"typefs-registry": "^2.1.12"
}
}