forked from anderson-arlen/cryptoseed
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
49 lines (49 loc) · 1.37 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
{
"name": "CryptoSeed",
"version": "1.1.0",
"description": "Secure your bitcoin recovery seed.",
"main": "main.js",
"scripts": {
"start": "webpack --config webpack-config.js --progress --inline --colors && electron .",
"watch": "webpack --config webpack-config.js --progress --inline --colors --watch",
"lint": "eslint --ext .js,.jsx .",
"pack:linux": "build --linux deb --x64",
"pack:windows": "build --win --x64"
},
"repository": "[email protected]:anderson-arlen/cryptoseed.git",
"keywords": [
"electron",
"bitcoin",
"encryption",
"bip32",
"recovery",
"seed",
"phrase",
"words"
],
"author": "Arlen Anderson <[email protected]>",
"license": "MIT",
"devDependencies": {
"electron": "^1.4.1"
},
"dependencies": {
"babel-core": "^6.21.0",
"babel-loader": "^6.2.10",
"babel-plugin-syntax-async-functions": "^6.13.0",
"babel-plugin-transform-regenerator": "^6.21.0",
"babel-polyfill": "^6.20.0",
"babel-preset-es2015": "^6.18.0",
"babel-preset-react": "^6.16.0",
"bluebird": "^3.4.7",
"eslint-plugin-react": "^6.9.0",
"flexboxgrid": "^6.3.1",
"material-ui": "^0.16.6",
"qr-image": "^3.2.0",
"react": "^15.4.2",
"react-dom": "^15.4.2",
"react-tap-event-plugin": "^2.0.1",
"transfer-webpack-plugin": "^0.1.4",
"webpack": "^1.14.0"
},
"build": {}
}