forked from Ohalo-Ltd/solevm
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
43 lines (43 loc) · 1004 Bytes
/
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
{
"name": "solevm",
"version": "0.1.0",
"description": "Some EVM functionality implemented in Solidity",
"scripts": {
"lint": "solhint **/*.sol",
"compile": "node ./bin/compile.js",
"test": "jest",
"ts-lint": "tslint -p ."
},
"author": "Andreas Olofsson",
"license": "MIT",
"devDependencies": {
"@types/jest": "^22.2.3",
"@types/mkdirp": "^0.5.2",
"@types/node": "^10.0.8",
"babel-cli": "^6.26.0",
"babel-preset-env": "^1.7.0",
"jest": "^22.4.3",
"solhint": "^1.1.7",
"ts-jest": "^22.4.6",
"tslint": "^5.10.0",
"typescript": "^2.8.3"
},
"dependencies": {
"bignumber.js": "^7.0.1",
"chalk": "^2.4.1",
"mkdirp": "^0.5.1",
"web3-eth-abi": "^1.0.0-beta.34"
},
"jest": {
"verbose": true,
"moduleFileExtensions": [
"ts",
"tsx",
"js"
],
"transform": {
"\\.(ts|tsx)$": "<rootDir>/node_modules/ts-jest/preprocessor.js"
},
"testRegex": "/__tests__/.*\\.(ts|tsx)$"
}
}