-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
74 lines (74 loc) · 2.43 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
{
"name": "typefs",
"version": "1.1.4",
"description": "A file storage package that provides a single interface to many types of filesystems.",
"author": "Daniel Samson <[email protected]>",
"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": "4.3.19",
"@types/mocha": "10.0.7",
"@types/mock-fs": "4.13.4",
"@types/node": "20.16.2",
"@types/sinon": "17.0.3",
"@typescript-eslint/eslint-plugin": "8.3.0",
"@typescript-eslint/parser": "8.3.0",
"audit-ci": "7.1.0",
"chai": "^4.5.0",
"eslint": "^8.0.0",
"eslint-config-airbnb-base": "15.0.0",
"eslint-import-resolver-typescript": "3.6.3",
"eslint-plugin-import": "2.29.1",
"eslint-plugin-jsdoc": "50.2.2",
"eslint-plugin-mocha": "10.5.0",
"eslint-plugin-sonarjs": "2.0.1",
"install": "0.13.0",
"mocha": "10.7.3",
"mock-fs": "5.2.0",
"nyc": "17.0.0",
"sinon": "18.0.0",
"source-map-support": "0.5.21",
"ts-node": "^10.9.2",
"typescript": "^5.5.4"
},
"dependencies": {
"typefs-registry": "^2.0.0"
}
}