-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
52 lines (52 loc) · 1.54 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
{
"name": "solidity-math",
"version": "0.1.0",
"description": "Solidity number types in Javascript",
"main": "lib.commonjs/index.js",
"module": "lib.es6/index.js",
"scripts": {
"compile": "npm run fix && rm -rf lib.commonjs && rm -rf lib.es6 && tsc --build tsconfig.es6.json && tsc --build tsconfig.commonjs.json",
"compile-windows": "npm run fix && (if exist lib.commonjs rmdir /s /q lib.commonjs) && (if exist lib.es6 rmdir /s /q lib.es6) && tsc --build tsconfig.es6.json && tsc --build tsconfig.commonjs.json",
"lint": "eslint . --ext .ts",
"fix": "eslint . --ext .ts --fix",
"test": "npx hardhat test"
},
"files": [
"lib.commonjs",
"lib.es6",
"CHANGELOG.md",
"LICENSE",
"package.json",
"README.md"
],
"sideEffects": false,
"repository": {
"type": "git",
"url": "git+https://github.com/gabrielfu/solidity-math.git"
},
"keywords": [
"solidity"
],
"author": "gabrielfu",
"license": "MIT",
"bugs": {
"url": "https://github.com/gabrielfu/solidity-math/issues"
},
"homepage": "https://github.com/gabrielfu/solidity-math",
"devDependencies": {
"@nomicfoundation/hardhat-toolbox": "^2.0.1",
"@types/node": "^14.11.2",
"@typescript-eslint/eslint-plugin": "^4.11.1",
"@typescript-eslint/parser": "^4.11.1",
"eslint": "^7.17.0",
"hardhat": "^2.12.6",
"solc-typed-ast": "^11.0.2",
"ts-node": "^10.9.1",
"typescript": "~4.7.0"
},
"dependencies": {
"@types/lodash.memoize": "^4.1.7",
"lodash.memoize": "^4.1.2",
"bn.js": "^5.2.1"
}
}