forked from ethereum-optimism/mocktimism
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 loc) · 828 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
{
"name": "@eth-optimism/mocktimism-alpha",
"version": "0.0.1",
"private": false,
"description": "Mocktimism is the placeholder name for a rollup wrapper around anvil and other devenets",
"keywords": [
"anvil",
"forge",
"foundry",
"optimism",
"blockchain"
],
"repository": {
"type": "git",
"url": "https://github.com/evmts/evmts-monorepo.git",
"directory": "schemas"
},
"license": "MIT",
"contributors": [
"Optimism PBC",
"Base"
],
"type": "module",
"bin": {
"mocktimism": "./bin/mocktimism"
},
"files": [
"bin",
"docs",
"README.md"
],
"scripts": {
"build": "make build",
"lint": "make lint",
"lint:check": "make lint:check",
"test": "make test",
"release": "npm run build && npm publish --tag latest --access=public"
},
"publishConfig": {
"access": "public"
}
}