forked from qgustavor/direct-mega
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.48 KB
/
package.json
File metadata and controls
52 lines (52 loc) · 1.48 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
{
"name": "direct-mega",
"version": "1.0.0",
"description": "MEGA + Service Workers = Direct MEGA",
"scripts": {
"test": "standard",
"build": "npm run build:sw && npm run build:fallback && npm run build:splitter",
"build:sw": "rollup --config rollup.sw.js",
"build:fallback": "rollup --config rollup.fallback.js",
"build:splitter": "rollup --config rollup.splitter.js",
"deploy": "gh-pages -d dist"
},
"repository": {
"type": "git",
"url": "git+https://github.com/qgustavor/direct-mega.git"
},
"author": "qgustavor (https://qgustavor.tk)",
"license": "MIT",
"bugs": {
"url": "https://github.com/qgustavor/direct-mega/issues"
},
"homepage": "https://github.com/qgustavor/direct-mega#readme",
"private": true,
"standard": {
"ignore": [
"dist/sw.js",
"dist/fallback.js",
"dist/splitter.js"
]
},
"devDependencies": {
"babel-plugin-external-helpers": "^6.22.0",
"babel-preset-latest": "^6.24.0",
"gh-pages": "^0.12.0",
"rollup": "^0.41.5",
"rollup-plugin-babel": "^2.7.1",
"rollup-plugin-commonjs": "^8.2.1",
"rollup-plugin-json": "^2.1.0",
"rollup-plugin-node-builtins": "^2.1.0",
"rollup-plugin-node-globals": "^1.1.0",
"rollup-plugin-node-resolve": "^2.0.0",
"rollup-plugin-uglify": "^1.0.1",
"standard": "^9.0.1"
},
"dependencies": {
"bytes": "^3.0.0",
"escape-html": "^1.0.3",
"megajs": "^0.13.1",
"mime-types": "^2.1.17",
"range-parser": "^1.2.0"
}
}