-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
executable file
·74 lines (74 loc) · 2.12 KB
/
package.json
File metadata and controls
executable file
·74 lines (74 loc) · 2.12 KB
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
{
"name": "@gifflar/solgen",
"version": "1.0.3-alpha",
"description": "A smart contract generator library.",
"main": "bin/index.js",
"types": "bin/index.d.ts",
"scripts": {
"build": "rm -rf bin && tsc --project tsconfig.json && tscpaths -p tsconfig.json -s ./src -o ./bin",
"build-types": "rm -rf types && tsc --project tsconfig.types.json && tscpaths -p tsconfig.types.json -s ./src -o ./types",
"test": "jest",
"testunit": "./node_modules/mocha/bin/mocha test/unit/**/*",
"testfunc": "./node_modules/mocha/bin/mocha test/functional/**/*",
"docs": "jsdoc -c jsdoc-config.json"
},
"bin": {
"solgen": "./bin/index.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/GifflarJS-Framework/solgen.git"
},
"keywords": [
"blockchain",
"ethereum",
"solidity",
"internet",
"of",
"things"
],
"author": "Levy Santiago",
"license": "MIT",
"bugs": {
"url": "https://github.com/GifflarJS-Framework/solgen/issues"
},
"publishConfig": {
"access": "public"
},
"homepage": "https://github.com/GifflarJS-Framework/solgen#readme",
"devDependencies": {
"@smartdec/smartcheck": "^2.0.1",
"@types/jest": "26.0.16",
"@types/node": "^15.3.1",
"@typescript-eslint/eslint-plugin": "^3.10.1",
"@typescript-eslint/parser": "^3.10.1",
"better-docs": "^2.0.1",
"eslint": "^7.21.0",
"eslint-config-airbnb-base": "^14.2.0",
"eslint-config-prettier": "^6.15.0",
"eslint-import-resolver-typescript": "^2.3.0",
"eslint-plugin-import": "^2.21.2",
"eslint-plugin-prettier": "^3.1.4",
"ganache-cli": "^6.9.1",
"jest": "^26.6.3",
"jsdoc-mermaid": "^1.0.0",
"module-alias": "^2.2.2",
"prettier": "^2.2.1",
"ts-jest": "26.4.4",
"ts-loader": "^9.2.5",
"tsconfig-paths": "^3.9.0",
"tscpaths": "^0.0.9",
"typescript": "^4.2.3"
},
"dependencies": {
"reflect-metadata": "^0.1.13",
"solc": "0.6.0",
"tsyringe": "^4.6.0",
"types-solc": "^1.0.1",
"web3": "1.5.3",
"web3-core": "1.5.3",
"web3-eth": "1.5.3",
"web3-eth-contract": "1.5.3",
"web3-utils": "1.5.3"
}
}