-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
46 lines (46 loc) · 1.14 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
{
"name": "solregex",
"version": "0.3.1",
"description": "generates Solidity smart contracts to match regular expressions",
"author": "g. nicholas d'andrea <[email protected]>",
"license": "MIT",
"bin": {
"solregex": "dist/bin/solregex.js"
},
"files": [
"dist"
],
"scripts": {
"solregex": "ts-node ./bin/solregex.ts",
"solregex:dist": "node ./dist/bin/solregex.js",
"test": "jest",
"prepare": "tsc && cp ./package.json dist/",
"clean": "rm -rf ./dist"
},
"keywords": [
"solidity",
"regex",
"ethereum"
],
"dependencies": {
"argparse": "^1.0.9",
"graph.js": "^1.21.1",
"handlebars": "^4.7.8",
"node-interval-tree": "^1.1.4",
"regjsparser": "^0.10.0"
},
"devDependencies": {
"@jest/globals": "^29.7.0",
"@types/node": "^20.6.3",
"@typescript-eslint/eslint-plugin": "^6.7.2",
"@typescript-eslint/parser": "^6.7.2",
"eslint": "^8.49.0",
"jest": "^29.7.0",
"solc": "^0.4.23",
"ts-jest": "^29.1.1",
"ts-node": "^10.9.1",
"typescript": "^5.2.2",
"typescript-eslint": "^0.0.1-alpha.0"
},
"repository": "[email protected]:gnidan/solregex.git"
}