Skip to content

Commit 5a39dee

Browse files
authored
Add package.json to be able to publish to NPM (#15)
* Add `package.json` to be able to publish to NPM * Add "echidna" and "medusa" keywords
1 parent a223ec9 commit 5a39dee

1 file changed

Lines changed: 29 additions & 0 deletions

File tree

package.json

Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
{
2+
"name": "@perimetersec/fuzzlib",
3+
"version": "0.2.0",
4+
"description": "Solidity Fuzzing Library",
5+
"homepage": "https://github.com/perimetersec/fuzzlib#readme",
6+
"author": "Perimeter <info@perimetersec.io>",
7+
"license": "MIT",
8+
"files": [
9+
"src/**/*"
10+
],
11+
"scripts": {
12+
"test": "foundry test"
13+
},
14+
"repository": {
15+
"type": "git",
16+
"url": "git+https://github.com/perimetersec/fuzzlib.git"
17+
},
18+
"bugs": {
19+
"url": "https://github.com/perimetersec/fuzzlib/issues"
20+
},
21+
"keywords": [
22+
"solidity",
23+
"fuzzing",
24+
"library",
25+
"security",
26+
"echidna",
27+
"medusa"
28+
]
29+
}

0 commit comments

Comments
 (0)