forked from BlockchainTokenAssociation/VerifiedToken-PoC
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
64 lines (64 loc) · 1.91 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
{
"name": "verifiedtoken",
"version": "1.0.0",
"description": "Verified Token checks if token-transfer to some address is authorised",
"main": "/",
"directories": {
"doc": "docs"
},
"dependencies": {
"@babel/core": "^7.0.0-beta.46",
"@babel/preset-env": "^7.0.0-beta.46",
"solc": "^0.4.25"
},
"devDependencies": {
"babel-core": "^6.26.0",
"babel-polyfill": "^6.26.0",
"babel-preset-es2015": "^6.18.0",
"babel-preset-stage-2": "^6.24.1",
"babel-preset-stage-3": "^6.17.0",
"babel-register": "^6.23.0",
"bignumber.js": "^5.0.0",
"chai": "^4.2.0",
"chai-as-promised": "^7.1.1",
"chai-bignumber": "^2.0.2",
"coveralls": "^3.0.0",
"eth-gas-reporter": "^0.1.1",
"ethereumjs-abi": "^0.6.4",
"ethereumjs-testrpc": "^6.0.3",
"mocha-lcov-reporter": "^1.3.0",
"openzeppelin-solidity": "^1.12.0",
"solidity-coverage": "^0.5.11",
"strip-loader": "^0.1.2",
"truffle": "^4.1.14",
"truffle-hdwallet-provider": "^0.0.3",
"uikit": "^3.0.0-beta.42",
"uniq": "^1.0.1",
"web3": "^1.0.0-beta.34",
"webpack": "^4.6.0",
"webpack-dev-server": "^3.1.3",
"webpack-node-externals": "^1.7.2"
},
"scripts": {
"node": "ganache-cli --gasLimit 8000000 --port 8545",
"prepare": "truffle compile && truffle migrate",
"test": "scripts/test.sh",
"coverage": "scripts/coverage.sh",
"build": "browserify demo/app.js -o demo/assets/bundle.js",
"dev": "webpack-dev-server --content-base ./ ./demo/app.js --hot",
"start": "npm run build & npm run dev"
},
"repository": {
"type": "git",
"url": "git+https://github.com/BlockchainLabsNZ/VerifiedToken.git"
},
"keywords": [
"verifiedToken"
],
"author": "Blockchain Labs, NZ",
"license": "ISC",
"bugs": {
"url": "https://github.com/BlockchainLabsNZ/VerifiedToken/issues"
},
"homepage": "https://github.com/BlockchainLabsNZ/VerifiedToken#readme"
}