UNPKG

1.97 kBJSONView Raw
1{
2 "name": "megajs",
3 "version": "0.12.1",
4 "description": "Unofficial JavaScript SDK for MEGA",
5 "main": "dist/main.node-cjs.js",
6 "module": "dist/main.node-es.js",
7 "jsnext:main": "dist/main.node-es.js",
8 "browser": {
9 "dist/main.node-cjs.js": "dist/main.browser-umd.js",
10 "dist/main.node-es.js": "dist/main.browser-es.js"
11 },
12 "files": [
13 "dist"
14 ],
15 "repository": {
16 "type": "git",
17 "url": "https://github.com/qgustavor/mega.git"
18 },
19 "keywords": [
20 "mega",
21 "storage"
22 ],
23 "scripts": {
24 "build": "node build",
25 "lint": "standard",
26 "pretest": "node test/pre-test",
27 "test": "ava || npm run posttest",
28 "posttest": "node test/post-test",
29 "dist": "npm run lint && npm run build && npm run test"
30 },
31 "standard": {
32 "ignore": [
33 "dist"
34 ]
35 },
36 "ava": {
37 "files": [
38 "test/**/*.test.js"
39 ],
40 "require": [
41 "babel-register",
42 "babel-polyfill"
43 ]
44 },
45 "author": "Tõnis Tiigi <tonistiigi@gmail.com>",
46 "contributors": [
47 "Gustavo Rodrigues (https://qgustavor.tk)"
48 ],
49 "license": "MIT",
50 "dependencies": {
51 "combined-stream": "^1.0.5",
52 "request": "^2.69.0",
53 "secure-random": "^1.1.1",
54 "stream-combiner": "^0.2.2",
55 "stream-skip": "^1.0.2",
56 "through": "^2.1.0"
57 },
58 "devDependencies": {
59 "ava": "^0.17.0",
60 "babel-core": "^6.24.1",
61 "babel-plugin-external-helpers": "^6.18.0",
62 "babel-polyfill": "^6.20.0",
63 "babel-preset-babili": "0.0.12",
64 "babel-preset-latest": "^6.16.0",
65 "babel-register": "^6.18.0",
66 "google-closure-compiler-js": "^20161201.0.0",
67 "nock": "^9.0.2",
68 "rollup": "^0.36.4",
69 "rollup-plugin-babel": "^2.3.9",
70 "rollup-plugin-commonjs": "^2.2.1",
71 "rollup-plugin-json": "^2.0.2",
72 "rollup-plugin-node-builtins": "^2.0.0",
73 "rollup-plugin-node-globals": "^1.1.0",
74 "rollup-plugin-node-resolve": "^2.0.0",
75 "rollup-plugin-replace": "^1.1.1",
76 "standard": "^8.6.0"
77 }
78}