-
-
Notifications
You must be signed in to change notification settings - Fork 45
/
package.json
87 lines (87 loc) · 2.06 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
83
84
85
86
87
{
"name": "native-file-system-adapter",
"version": "3.0.1",
"description": "Native File System API",
"main": "src/es6.js",
"module": "./src/es6.js",
"directories": {
"example": "example"
},
"type": "module",
"scripts": {
"test": "exit 0",
"test:browser": "php -S localhost:4444 & open http://localhost:4444/example/test.html",
"test:node": "node test/test-node.js",
"test:deno": "deno run --allow-read --allow-write --allow-net test/test-deno.js",
"test:wpt-in-deno": "deno run --allow-read --allow-write --allow-net test/test-wpt-in-deno.js",
"build": "rm -rf dist && rollup -c rollup.config.js",
"_prepublishOnly": "rm -rf types && tsc -p jsconfig.json"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jimmywarting/native-file-system-adapter.git"
},
"engines": {
"node": ">=14.8.0"
},
"types": "types/mod.d.ts",
"keywords": [
"filesystem",
"file",
"blob",
"stream",
"fs",
"read",
"write",
"delete",
"file system access",
"spec"
],
"author": "Jimmy Wärting",
"license": "MIT",
"bugs": {
"url": "https://github.com/jimmywarting/native-file-system-adapter/issues"
},
"contributors": [
{
"name": "Alexandru Ciuca"
}
],
"homepage": "https://github.com/jimmywarting/native-file-system-adapter#readme",
"optionalDependencies": {
"fetch-blob": "^3.2.0"
},
"standard": {
"globals": [
"File",
"performance",
"Blob",
"Response",
"ClipboardEvent",
"DataTransferItem",
"FormData",
"alert",
"ReadableStream",
"DataTransfer"
]
},
"funding": [
{
"type": "github",
"url": "https://github.com/sponsors/jimmywarting"
},
{
"type": "paypal",
"url": "https://paypal.me/jimmywarting"
}
],
"devDependencies": {
"@types/filesystem": "^0.0.32",
"rollup": "^2.67.3",
"rollup-plugin-multi-input": "^1.3.1",
"rollup-plugin-terser": "^7.0.2",
"standard": "^16.0.4",
"tape": "^5.5.2",
"typescript": "^4.5.5"
}
}