-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
101 lines (101 loc) · 2.97 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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
{
"name": "svalinn",
"productName": "Svalinn",
"description": "ICONation ICX Wallet",
"version": "0.1.7",
"homepage": "https://github.com/ICONation/svalinn",
"repository": "https://github.com/ICONation/svalinn",
"main": "main.js",
"scripts": {
"start": "electron .",
"debug": "electron . debug",
"dev": "electron . dev",
"install": "node src/js/i18n/dictionaryService.js",
"postinstall": "install-app-deps",
"pack": "build --dir",
"dist": "build"
},
"keywords": [],
"author": "ICONation",
"license": "Apache-2.0",
"devDependencies": {
"devtron": "^1.4.0",
"electron": "^5.0.1",
"electron-builder": "^20.41.0",
"electron-packager": "^13.1.1",
"electron-winstaller": "^3.0.4",
"jshint": "^2.10.2"
},
"dependencies": {
"@trodi/electron-splashscreen": "^0.3.4",
"ag-grid-community": "^20.2.0",
"async": "^2.6.2",
"clean": "^4.0.2",
"csv-writer": "^1.3.0",
"electron-log": "^3.0.5",
"electron-store": "^3.2.0",
"fnv-plus": "^1.2.12",
"icon-sdk-js": "0.0.16",
"node-crypto-gcm": "^1.0.3",
"qr-image": "^3.2.0",
"request": "^2.88.0",
"request-promise-native": "^1.0.7",
"secp256k1": "^3.7.0",
"sessionstorage": "^0.1.0",
"shell": "^0.5.0",
"superagent": "^5.0.5"
},
"build": {
"appId": "org.iconation.svalinn",
"copyright": "Copyright (c) 2019 ICONation",
"directories": {
"output": "dist",
"buildResources": "build"
},
"files": [
"**/*",
"!**/docs/*",
"!**/bin/*",
"!**/service.log",
"!**/src/js/*.src.js",
"!**/src/js/extras/*.src.js",
"!**/js/*.src.js",
"!**/node_modules/*/{CHANGELOG.md,README.md,README,readme.md,readme}",
"!**/node_modules/*/{test,__tests__,tests,powered-test,example,examples}",
"!**/node_modules/*.d.ts",
"!**/node_modules/.bin",
"!**/*.{iml,o,hprof,orig,pyc,pyo,rbc,swp,csproj,sln,xproj}",
"!.editorconfig",
"!**/._*",
"!**/{.DS_Store,.git,.hg,.svn,CVS,RCS,SCCS,.gitignore,.gitattributes}",
"!**/{__pycache__,thumbs.db,.flowconfig,.idea,.vs,.nyc_output}",
"!**/{appveyor.yml,.travis.yml,circle.yml}",
"!**/{npm-debug.log,yarn.lock,.yarn-integrity,.yarn-metadata.json}"
],
"linux": {
"artifactName": "${productName}-v${version}-${os}.${ext}",
"target": [
"AppImage"
],
"maintainer": "Spl3en (@Spl3en_ICON)",
"category": "Office",
"vendor": "ICONation",
"synopsis": "ICONation ICX Wallet"
},
"win": {
"target": "nsis",
"publisherName": "ICONation"
},
"nsis": {
"artifactName": "${productName}-v${version}-${os}-${arch}-setup.${ext}",
"oneClick": true,
"perMachine": false
},
"mac": {
"artifactName": "${productName}-v${version}-${os}-${arch}.${ext}",
"category": "public.app-category.business",
"target": "zip"
}
},
"postinstall": "./node_modules/.bin/electron-builder install-app-deps"
}