-
Notifications
You must be signed in to change notification settings - Fork 26
/
.package.json
129 lines (129 loc) · 3.79 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
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
{
"name": "dagcoin",
"description": "A wallet for decentralized value",
"author": "Dagcoin",
"version": "1.3.2",
"discoveryServicePairingCode": "[email protected]/bb#0000",
"keywords": [
"wallet",
"dagcoin",
"decentralized",
"multisignature",
"bitcoin"
],
"main": "public/index.html",
"window": {
"title": "Dagcoin wallet",
"icon": "./public/img/icons/icon_256x256.png",
"show": true,
"visible": true,
"resizable": false,
"frame": true,
"width": 400,
"height": 600,
"position": "center",
"fullscreen": false
},
"webkit": {
"page-cache": false,
"java": false,
"plugin": false
},
"chromium-args": "--proxy-server=http://127.1.2.7 --proxy-bypass-list=sentry.io --disable-password-generation",
"homepage": "https://github.com/dagcoin/dagcoin",
"license": "MIT",
"repository": {
"url": "[email protected]:dagcoin/dagcoin.git",
"type": "git"
},
"bugs": {
"url": "https://github.com/dagcoin/dagcoin/issues"
},
"browser": {
"request": "browser-request",
"secp256k1": "secp256k1/js"
},
"dependencies": {
"async": "^1.5.2",
"bip38": "^1.4.0",
"bitcore-lib": "^0.13.14",
"bitcore-mnemonic": "~1.0.0",
"byteballcore": "git+https://github.com/byteball/byteballcore.git",
"chokidar": "^1.7.0",
"jszip": "^3.1.3",
"lodash": "^4.6.1",
"preconditions": "^1.0.8",
"request": "^2.81.0",
"browser-request": "^0.3.3",
"shelljs": "^0.3.0",
"sjcl": "^1.0.2",
"unzip": "git+https://github.com/byteball/unzip.git",
"zip": "git+https://github.com/xJeneKx/zip.git"
},
"optionalDependencies": {
"innosetup-compiler": "^5.5.9"
},
"scripts": {
"pretest": "npm run eslint && npm run stylelint",
"test": "./node_modules/.bin/grunt test-coveralls",
"eslint": "./node_modules/eslint/bin/eslint.js --cache ./src",
"stylelint": "./node_modules/.bin/stylelint ./src/css/*.scss"
},
"devDependencies": {
"adm-zip": "^0.4.7",
"angular-mocks": "^1.3.14",
"autoprefixer": "^7.1.2",
"babel-preset-es2015": "^6.24.1",
"babelify": "^7.3.0",
"bhttp": "^1.2.1",
"browserify": "^14.4.0",
"cssnano": "^3.10.0",
"eslint": "^3.19.0",
"eslint-config-airbnb-base": "^11.2.0",
"eslint-plugin-import": "^2.5.0",
"grunt": "^1.0.1",
"grunt-angular-gettext": "^2.2.3",
"grunt-angular-templates": "^1.1.0",
"grunt-babel": "^6.0.0",
"grunt-browserify": "^5.0.0",
"grunt-contrib-compress": "^1.3.0",
"grunt-contrib-concat": "^1.0.1",
"grunt-contrib-copy": "^1.0.0",
"grunt-contrib-sass": "^1.0.0",
"grunt-contrib-uglify": "git://github.com/gruntjs/grunt-contrib-uglify.git#harmony",
"grunt-contrib-watch": "^1.0.0",
"grunt-debian-package": "^0.1.11",
"grunt-exec": "^1.0.0",
"grunt-karma": "^1.0.0",
"grunt-karma-coveralls": "^2.5.3",
"grunt-nw-builder": "3.1.0",
"grunt-postcss": "^0.8.0",
"grunt-stylelint": "^0.8.0",
"grunt-svgmin": "^4.0.0",
"grunt-env": "^0.4.4",
"grunt-template": "^1.0.0",
"jasmine-core": "^2.6.4",
"jshint": "^2.9.4",
"karma": "^1.7.0",
"karma-babel-preprocessor": "^6.0.1",
"karma-browserify": "^5.1.1",
"karma-chrome-launcher": "^2.2.0",
"karma-cli": "0.0.4",
"karma-coverage": "^0.2.7",
"karma-es5-shim": "0.0.4",
"karma-es6-shim": "^1.0.0",
"karma-jasmine": "^0.3.8",
"karma-ng-html2js-preprocessor": "^1.0.0",
"karma-nodewebkit-launcher": "0.0.13",
"karma-phantomjs-launcher": "^0.1.4",
"karma-spec-reporter": "0.0.31",
"nw-dev": "^3.0.1",
"phantomjs": "^2.1.7",
"pixrem": "^4.0.1",
"sqlite3": "^3.1.9",
"stringify": "^5.1.0",
"stylelint": "^8.0.0",
"stylelint-csstree-validator": "^1.1.1",
"stylelint-scss": "^1.5.1"
}
}