-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
61 lines (61 loc) · 1.72 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
{
"name": "ethereum-localized-messaging",
"version": "2.1.4",
"description": "A method of converting machine codes to human-readable text in any language and phrasing.",
"keywords": [
"ethereum",
"solidity",
"localizations",
"eip",
"1444"
],
"repository": {
"type": "git",
"url": "git+https://github.com/jenncoop/ethereum-localized-messaging.git"
},
"bugs": {
"url": "https://github.com/jenncoop/ethereum-localized-messaging/issues"
},
"main": "index.js",
"license": "Apache-2.0",
"author": "Jenn Cooper <cooper.jennl@gmail.com>",
"scripts": {
"postinstall": "echo \"\n\n\n\ncontracts included in this project require compilation on a fresh checkout: npm run truffle:compile\n\n\n\n\"",
"pretest": "./ensure-ganache-running.sh || (npm run start:testrpc &)",
"test": "truffle test",
"test:lint": "eslint -c .eslintrc . --color=true --quiet",
"test:lint:fix": "eslint -c .eslintrc . --color=true --quiet --fix",
"truffle:compile": "truffle compile",
"coverage": "./node_modules/.bin/solidity-coverage",
"watch": "npm-watch"
},
"watch": {
"test": "contracts/*,test/*",
"test:truffle": {
"patterns": [
"truffle"
],
"extensions": "js,json,sol"
}
},
"devDependencies": {
"chai": "^4.2.0",
"eslint": "^5.12.0",
"eslint-config-airbnb-base": "^13.1.0",
"eslint-plugin-import": "^2.14.0",
"ganache-cli": "^6.2.5",
"mocha": "^5.2.0",
"npm-watch": "^0.5.0",
"openzeppelin-solidity": "^1.12.0",
"solhint": "^1.5.0",
"solidity-coverage": "^0.5.11"
},
"engines": {
"node": ">=8.4"
},
"dependencies": {
"ethereumjs-tx": "^1.3.7",
"truffle": "^5.0.1",
"web3": "^1.0.0-beta.37"
}
}