-
-
Notifications
You must be signed in to change notification settings - Fork 42
/
package.json
94 lines (94 loc) · 2.41 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
88
89
90
91
92
93
94
{
"name": "megajs",
"version": "1.3.3",
"description": "Unofficial JavaScript SDK for MEGA",
"main": "dist/main.node-cjs.js",
"typings": "types/cjs.d.ts",
"exports": {
".": {
"import": {
"types": "./types/es.d.ts",
"deno": "./dist/main.browser-es.mjs",
"node": "./dist/main.node-es.mjs",
"default": "./dist/main.browser-es.mjs"
},
"require": {
"types": "./types/cjs.d.ts",
"deno": "./dist/main.browser-umd.js",
"node": "./dist/main.node-cjs.js",
"default": "./dist/main.browser-umd.js"
}
},
"./dist/main.node-cjs.js": "./dist/main.node-cjs.js",
"./dist/main.browser-es.mjs": "./dist/main.browser-es.mjs",
"./dist/main.node-es.mjs": "./dist/main.node-es.mjs",
"./dist/main.browser-umd.js": "./dist/main.browser-umd.js"
},
"files": [
"dist",
"types"
],
"homepage": "https://mega.js.org/",
"repository": {
"type": "git",
"url": "git+https://github.com/qgustavor/mega.git"
},
"keywords": [
"mega",
"mega.io",
"mega.nz",
"mega.co.nz",
"storage"
],
"scripts": {
"build": "node build",
"test": "npm run lint && npm run test-runner",
"test-runner": "node test/helpers/test-runner.mjs",
"lint": "npm run lint-js && npm run lint-ts",
"lint-fix": "npm run lint-js-fix && npm run lint-ts-fix",
"lint-js": "standard",
"lint-js-fix": "standard --fix",
"lint-ts": "ts-standard",
"lint-ts-fix": "ts-standard --fix",
"dist": "npm run test && npm run build"
},
"standard": {
"ignore": [
"dist"
]
},
"ts-standard": {
"files": "types/cjs.d.ts"
},
"author": "Tõnis Tiigi <tonistiigi@gmail.com>",
"contributors": [
"Gustavo Rodrigues (https://qgustavor.tk)"
],
"license": "MIT",
"publishConfig": {
"provenance": true
},
"dependencies": {
"abort-controller": "^3.0.0",
"pumpify": "^2.0.1",
"secure-random": "^1.1.2",
"stream-skip": "^1.0.3"
},
"devDependencies": {
"@types/node": "^20.11.30",
"@types/node-fetch": "^2.6.11",
"ava": "^6.1.2",
"buffer": "^6.0.3",
"core-js": "^3.36.1",
"esbuild": "^0.20.2",
"esbuild-plugin-alias": "^0.2.1",
"events": "^3.3.0",
"mega-mock": "^0.4.2",
"readable-stream": "^4.5.2",
"regenerator-runtime": "^0.14.1",
"standard": "^17.1.0",
"tmp-promise": "^3.0.3",
"ts-standard": "^12.0.2",
"util": "^0.12.5"
}
}