-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
33 lines (33 loc) · 958 Bytes
/
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
{
"name": "browser-cmd",
"repository": {
"type": "git",
"url": "https://github.com/lufinkey/BrowserCommand.git"
},
"version": "1.0.9",
"description": "Control any webextension-supported browser from nodejs or the terminal",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build-webext": "node node_modules/browserify/bin/cmd.js extension.js > extension/main.js && cp node_modules/webextension-polyfill/dist/browser-polyfill.js extension/browser-polyfill.js"
},
"author": "lufinkey",
"license": "ISC",
"main": "index.js",
"bin": {
"browser-cmd": "./cli.js",
"browser-cmd-server": "./server.js"
},
"dependencies": {
"argparce": "^1.0.0",
"browserify": "^14.5.0",
"child_process": "^1.0.2",
"detect-browser": "^2.0.0",
"elevationinfo": "^1.0.2",
"events": "^1.1.1",
"os": "^0.1.1",
"process-lockfile": "^1.0.1",
"userhomepath": "^1.0.6",
"webextension-polyfill": "^0.2.1",
"ws": "^3.3.3"
}
}