-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
78 lines (78 loc) · 2.93 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
76
77
78
{
"name": "@lions-mane/sol-datastructs",
"version": "0.1.1",
"private": false,
"repository": {
"type": "git",
"url": "https://github.com/lions-mane/sol-datastructs.git"
},
"homepage": "https://lions-mane.github.io/sol-datastructs",
"copyright": "Copyright 2020 Lionsmane Development",
"license": "MIT",
"scripts": {
"clean": "npm-run-all -p clean:build clean:test",
"clean:build": "rimraf ./build/",
"clean:test": "rimraf ./test/",
"test": "cross-env NODE_OPTIONS=--max-old-space-size=4096 mocha",
"start": "node dist/index.js",
"build": "npm -s run clean && tsc",
"lint": "eslint test-ts/**/*.ts",
"lint:fix": "eslint test-ts/**/*.ts --fix",
"compile": "npm-run-all compile:truffle generate-types compile:test",
"compile:truffle": "npm run clean:build && truffle compile",
"compile:test": "npm run clean:test && tsc -p ./tsconfig.test.json --outDir ./test",
"pretest": "npm run compile",
"prepublishOnly": "npm run test",
"generate-types": "npm-run-all -p generate-types:truffle generate-types:web3",
"generate-types:truffle": "typechain --target=truffle-v5 'build/contracts/*.json'",
"generate-types:web3": "typechain --target=web3-v1 'build/contracts/*.json'",
"ganache": "ganache-cli -l 8500000",
"migrate": "truffle migrate",
"docs": "solidity-docgen -i contracts -o docs"
},
"devDependencies": {
"@truffle/contract": "^4.3.4",
"@typechain/ethers-v5": "^5.0.0",
"@typechain/truffle-v5": "^4.0.0",
"@typechain/web3-v1": "^2.0.0",
"@types/chai": "^4.2.14",
"@types/lodash": "^4.14.167",
"@types/mocha": "^8.2.0",
"@types/node": "^12.19.4",
"@typescript-eslint/eslint-plugin": "^2.34.0",
"@typescript-eslint/parser": "^2.34.0",
"chai": "^4.2.0",
"cross-env": "^7.0.3",
"dotenv": "^8.2.0",
"eslint": "^6.8.0",
"eslint-config-prettier": "^6.15.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-prettier": "^3.1.4",
"ganache-cli": "^6.12.1",
"ganache-core": "^2.13.1",
"husky": "^4.3.0",
"lint-staged": "^10.5.1",
"lodash": "^4.17.20",
"mocha": "^8.2.0",
"npm-run-all": "^4.1.5",
"prettier": "^1.19.1",
"rimraf": "^3.0.2",
"solidity-docgen": "^0.5.11",
"truffle": "^5.1.60",
"truffle-assertions": "^0.9.2",
"ts-node": "^8.10.2",
"ts-node-dev": "^1.0.0",
"ts-priority-queue": "^0.1.1",
"typechain": "^4.0.1",
"typescript": "^4.0.3",
"web3": "^1.3.1",
"web3-core": "^1.3.1",
"web3-eth-contract": "^1.3.1"
},
"files": [
"contracts/**/!(Test*)",
"build/contracts/**/!(Test*)",
"types/truffle-contracts/!(Test*)",
"types/web3-v1-contracts/!(Test*)"
]
}