-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 937 Bytes
/
Copy pathpackage.json
File metadata and controls
33 lines (33 loc) · 937 Bytes
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": "bip39split",
"version": "0.0.2",
"description": "Bip39 split",
"repository": {
"type": "git",
"url": "git@github.com:pascalmartin/bip39split.git"
},
"author": "Pascal Martin <pascal@pascalmartin.io>",
"private": false,
"license": "MIT",
"dependencies": {
"bip39": "2.5.0",
"crypto-js": "3.1.9-1",
"instascan": "1.0.0",
"mustache": "3.0.1",
"secrets.js-grempe": "1.1.0",
"sjcl": "1.0.8",
"spectre.css": "0.5.8",
"webrtc-adapter": "3.3.3"
},
"devDependencies": {
"browserify": "16.3.0",
"gulp": "4.0.2",
"gulp-inject-version": "1.0.1",
"gulp-inline-source": "4.0.0",
"uglify-js": "3.6.0"
},
"scripts": {
"compileBip39Lib": "browserify -s bip39 node_modules/bip39/index.js | uglifyjs > lib/bip39.min.js",
"dist": "gulp inlinesource"
}
}