-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
48 lines (48 loc) · 1.32 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
{
"name": "@planar/ticket-wallet",
"version": "0.4.0",
"description": "Planar Network Ticket Wallet",
"main": "./build/index.js",
"scripts": {
"test": "ganache-cli > /dev/null & npm run lint && truffle test && pkill -f ganache-cli",
"build": "npm run lint && npm run compile && node index.js",
"compile": "truffle compile",
"lint": "solium -d contracts/",
"prepublishOnly": "npm run build",
"deploy-test": "npm run build && truffle migrate --network test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/planarnetwork/ticket-wallet.git"
},
"keywords": [
"solidity",
"ethereum",
"contracts",
"planar",
"network",
"travel",
"ticket",
"wallet"
],
"author": "Marek Mikuliszyn <marek@planar.network>, Linus Norton <linus@planar.network>",
"license": "MIT",
"bugs": {
"url": "https://github.com/planarnetwork/ticket-wallet/issues"
},
"homepage": "https://github.com/planarnetwork/ticket-wallet",
"devDependencies": {
"eth-gas-reporter": "^0.1.12",
"ganache-cli": "^6.2.5",
"openzeppelin-solidity": "^2.1.1",
"solium": "^1.2.2",
"truffle": "^5.0.1",
"truffle-hdwallet-provider": "1.0.2",
"web3-utils": "^1.0.0-beta.37"
},
"dependencies": {},
"directories": {
"doc": "docs",
"test": "test"
}
}