This repository has been archived by the owner on Feb 15, 2023. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
71 lines (71 loc) · 1.91 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
{
"name": "melon-build",
"version": "1.0.0-a.11",
"description": "🍉 Build Firefox-based browsers with ease",
"main": "index.js",
"reveal": true,
"bin": {
"melon": "./dist/index.js"
},
"scripts": {
"test": "echo \"Error: no test specified\"",
"build": "rm -rf dist/ && tsc && echo \"#!/usr/bin/env node\"|cat - ./dist/index.js > /tmp/out && mv /tmp/out ./dist/index.js && chmod +x ./dist/index.js",
"format": "prettier . -w",
"lint": "eslint .",
"docs:install": "",
"docs:build": "zola --root docs/ build",
"docs:dev": "zola --root docs/ serve"
},
"repository": {
"type": "git",
"url": "git+https://github.com/dothq/melon.git"
},
"keywords": [
"firefox",
"firefox-fork",
"build-tool"
],
"authors": [
"TrickyPR",
"EnderDev"
],
"license": "MPL-2.0",
"bugs": {
"url": "https://github.com/dothq/melon/issues"
},
"homepage": "https://github.com/dothq/melon#readme",
"dependencies": {
"axios": "^0.21.1",
"chalk": "^4.1.0",
"cli-progress": "^3.9.1",
"commander": "^6.2.1",
"execa": "^5.1.1",
"fs-extra": "^10.0.0",
"glob": "^7.1.7",
"linus": "^0.0.6",
"listr": "^0.14.3",
"prompts": "^2.4.1",
"rimraf": "^3.0.2",
"sharp": "^0.29.1"
},
"devDependencies": {
"@types/cli-progress": "^3.9.2",
"@types/fs-extra": "^9.0.13",
"@types/listr": "^0.14.4",
"@types/node": "^14.14.16",
"@types/prompts": "^2.0.14",
"@types/rimraf": "^3.0.0",
"@types/sharp": "^0.29.2",
"@typescript-eslint/eslint-plugin": "^4.32.0",
"@typescript-eslint/parser": "^4.32.0",
"eslint": "^7.2.0",
"eslint-config-airbnb": "18.2.1",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-react": "^7.21.5",
"eslint-plugin-react-hooks": "^1.7.0",
"prettier": "^2.2.1",
"typescript": "^4.1.3"
}
}