forked from qgustavor/mega
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
81 lines (81 loc) · 2.07 KB
/
package.json
File metadata and controls
81 lines (81 loc) · 2.07 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
75
76
77
78
79
80
81
{
"name": "megajs",
"version": "0.17.2",
"description": "Unofficial JavaScript SDK for MEGA",
"main": "dist/main.node-cjs.js",
"module": "dist/main.node-es.js",
"jsnext:main": "dist/main.node-es.js",
"browser": {
"dist/main.node-cjs.js": "dist/main.browser-umd.js",
"dist/main.node-es.js": "dist/main.browser-es.js"
},
"files": [
"dist"
],
"repository": {
"type": "git",
"url": "https://github.com/qgustavor/mega.git"
},
"keywords": [
"mega",
"storage"
],
"scripts": {
"build": "cross-env BABEL_ENV=build node build",
"test": "npm run lint && npm run ava-node && npm run ava-browser",
"lint": "standard",
"lint-fix": "standard --fix",
"ava-node": "cross-env BABEL_ENV=test-node ava",
"ava-browser": "cross-env BABEL_ENV=test-browser ava",
"dist": "npm run test && npm run build"
},
"standard": {
"ignore": [
"dist"
]
},
"ava": {
"files": [
"test/**/*.test.js"
],
"timeout": "2m",
"require": [
"@babel/register",
"@babel/polyfill"
]
},
"author": "Tõnis Tiigi <tonistiigi@gmail.com>",
"contributors": [
"Gustavo Rodrigues (https://qgustavor.tk)"
],
"license": "MIT",
"dependencies": {
"combined-stream": "^1.0.8",
"request": "^2.88.2",
"secure-random": "^1.1.2",
"stream-combiner": "^0.2.2",
"stream-skip": "^1.0.3",
"through": "^2.1.0"
},
"devDependencies": {
"@babel/core": "^7.10.2",
"@babel/polyfill": "^7.10.1",
"@babel/preset-env": "^7.10.2",
"@babel/register": "^7.10.1",
"ava": "1.0.0-rc.2",
"babel-plugin-transform-rename-import": "^2.3.0",
"babel-preset-minify": "^0.4.3",
"cross-env": "^5.2.1",
"mega-mock": "^0.2.0",
"rollup": "^0.58.2",
"rollup-plugin-babel": "^4.4.0",
"rollup-plugin-commonjs": "^8.4.1",
"rollup-plugin-json": "^2.3.1",
"rollup-plugin-node-builtins": "^2.1.2",
"rollup-plugin-node-globals": "^1.4.0",
"rollup-plugin-node-resolve": "^3.4.0",
"rollup-plugin-replace": "^2.2.0",
"standard": "^11.0.1",
"tmp": "0.0.33"
}
}