-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
75 lines (75 loc) · 1.67 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
65
66
67
68
69
70
71
72
73
74
75
{
"name": "paratii-contracts",
"version": "0.0.1",
"description": "Paratii Smart Contracts",
"main": "dist/paratii.js",
"directories": {
"test": "test"
},
"scripts": {
"test": "truffle test",
"testrpc": "testrpc --deterministic",
"testrpc_pm2": "pm2 start testrpc",
"lint": "standard",
"lint-fix": "standard --fix",
"truffle": "truffle",
"develop": "truffle develop",
"node": "node"
},
"dependencies": {
"babel-cli": "^6.26.0",
"default-options": "^1.0.0",
"promisify-node": "^0.4.0",
"web3": "^1.0.0-beta.24",
"zeppelin-solidity": "^1.3.0"
},
"devDependencies": {
"babel-plugin-syntax-async-functions": "^6.1.4",
"babel-polyfill": "^6.26.0",
"babel-preset-es2015": "^6.6.0",
"babel-register": "^6.24.1",
"ethereumjs-testrpc": "^6.0.1",
"pm2": "^1.1.3",
"pre-commit": "^1.2.2",
"solc": "^0.4.18",
"solc-cli": "^0.3.0",
"standard": "^10.0.3",
"truffle": "^4.0.1",
"truffle-contract": "^3.0.0",
"yarn": "^0.27"
},
"repository": {
"type": "git",
"url": "https://github.com/Paratii-Video/paratii-contracts"
},
"keywords": [
"solidity",
"ethereum",
"smart",
"contracts",
"security",
"paratii"
],
"author": "Jelle Gerbrandy <[email protected]>",
"license": "GPL-3.0",
"bugs": {
"url": "https://github.com/Paratii-Video/paratii-contracts/issues"
},
"homepage": "https://github.com/Paratii-Video/paratii-contracts",
"standard": {
"envs": [
"mocha"
],
"globals": [
"artifacts",
"assert",
"contract",
"it",
"web3"
],
"ignore": []
},
"pre-commit": [
"lint-fix"
]
}