-
Notifications
You must be signed in to change notification settings - Fork 28
Expand file tree
/
Copy pathpackage.json
More file actions
77 lines (77 loc) · 2.54 KB
/
package.json
File metadata and controls
77 lines (77 loc) · 2.54 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
{
"name": "OnlyKey",
"productName": "OnlyKey App",
"version": "5.5.0",
"version_name": "5.5.0",
"description": "Setup and configure OnlyKey",
"main": "app.js",
"scripts": {
"build": "./node_modules/.bin/gulp build",
"build_win": ".\\node_modules\\.bin\\gulp build",
"prerelease": "rm -rf ./node_modules/* && npm install --production && rm -rf ./release_node_modules && mkdir release_node_modules && cd release_node_modules && mkdir node_modules && cd .. && cp -R ./node_modules/* ./release_node_modules/node_modules && npm install && npm run build -- --env=production",
"prerelease_win": "rm -rf ./node_modules/* && npm install --production && rm -rf ./release_node_modules && mkdir release_node_modules && cd release_node_modules && mkdir node_modules && cd .. && cp -R ./node_modules/* ./release_node_modules/node_modules && npm install && npm run build_win -- --env=production",
"release": "./node_modules/.bin/gulp release --env=production",
"release_win": ".\\node_modules\\.bin\\gulp release --env=production",
"start": "node ./tasks/start",
"pretest": "npm run-script build",
"test": "mocha",
"testgulp": ".\\node_modules\\.bin\\gulp -v",
"prechrome": "./node_modules/.bin/gulp build --env=chrome",
"chrome": "echo 'Please run something like:'; echo \"chrome --load-and-launch-app=$(pwd)/build\""
},
"dependencies": {
"auto-launch": "^5.0.5",
"js-sha256": "^0.9.0",
"nw": "^0.71.1",
"nw-autoupdater": "^1.1.11",
"request": "^2.88.2",
"sshpk": "^1.17.0"
},
"devDependencies": {
"chai": "^4.3.7",
"chai-as-promised": "^7.1.1",
"eslint": "^8.33.0",
"fs-jetpack": "^5.1.0",
"gulp": "^4.0.2",
"gulp-sourcemaps": "^3.0.0",
"json": "^11.0.0",
"mocha": "^10.2.0",
"nw-dev": "^3.0.1",
"q": "^1.5.1",
"selenium-webdriver": "^4.8.0",
"tree-kill": "^1.2.2",
"yargs": "^17.6.2"
},
"optionalDependencies": {
"appdmg": "^0.6.4"
},
"repository": {
"type": "git",
"url": "git+https://github.com/trustcrypto/OnlyKey-App.git"
},
"keywords": [
"OnlyKey",
"CryptoTrust",
"two-factor",
"password",
"FIDO2",
"security",
"key"
],
"author": "CryptoTrust <admin@crp.to>",
"license": "Apache-2.0",
"bugs": {
"url": "https://onlykey.discourse.group/"
},
"homepage": "https://github.com/trustcrypto/OnlyKey-App#readme",
"window": {
"icon": "icon.png",
"show": true,
"toolbar": true,
"width": 1000,
"height": 600,
"min_width": 800,
"min_height": 400,
"position": "center"
}
}