-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.8 KB
/
Copy pathpackage.json
File metadata and controls
52 lines (52 loc) · 1.8 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
{
"name": "stiftung-dfn-donations",
"version": "1.0.0",
"description": "DFINITY Donation Package",
"main": "truffle.js",
"directories": {
"test": "test"
},
"dependencies": {
"babel-cli": "^6.22.2",
"babel-preset-es2017": "^6.22.0",
"babili": "0.0.11",
"bip39": "^2.2.0",
"bitcore-explorers": "maraoz/bitcore-explorers",
"bitcore-lib": "^0.13.19",
"bitcore-mnemonic": "^1.1.1",
"browserify": "^14.0.0",
"ecb-exchange-rates": "0.0.7",
"ethereumjs-util": "github:ethereumjs/ethereumjs-util",
"ethereumjs-wallet": "^0.6.0",
"node-coindesk": "^0.2.0",
"open-exchange-rates": "^0.3.0",
"request-promise": "^4.1.1",
"terminal-kit": "^0.25.6",
"uglify-js": "^2.7.5",
"web3": "^0.18.2",
"web3-provider-engine": "^8.6.1"
},
"devDependencies": {
"babel-preset-es2015": "^6.22.0",
"babel-preset-stage-0": "^6.22.0"
},
"scripts": {
"build:all": "truffle build && babel app/javascripts/*.es7 -d build && browserify --standalone DFNConstants app/javascripts/constants.js -o build/constants.js && browserify --standalone EthForwarder build/app/javascripts/eth.js -o build/eth.js",
"build:js": "babel app/javascripts/*.es7 -d build && browserify --standalone DFNConstants app/javascripts/constants.js -o build/constants.js && browserify --standalone EthForwarder build/app/javascripts/eth.js -o build/eth.js",
"minify": "babili build/eth.js -d .",
"test": "truffle test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/dfinity/STIFTUNG-DFN-donations.git"
},
"keywords": [
"dfinity"
],
"author": "DFINITY Stiftung",
"license": "MIT",
"bugs": {
"url": "https://github.com/dfinity/STIFTUNG-DFN-donations/issues"
},
"homepage": "https://github.com/dfinity/STIFTUNG-DFN-donations#readme"
}