-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.17 KB
/
package.json
File metadata and controls
47 lines (47 loc) · 1.17 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
{
"name": "@0xcompose/sspec",
"version": "1.0.9",
"description": "Solidity Smart Contract specification generation tool based on Foundry tests and slang",
"main": "bin/src/index.mjs",
"files": [
"bin",
"README.md"
],
"bin": {
"sspec": "bin/src/index.mjs"
},
"scripts": {
"start": "npx tsc && node bin/src/index.mjs ./samples/src/ ./samples/test/",
"start:help": "npx tsc && node bin/src/index.mjs ./samples/src/ ./samples/test/ --help",
"start:internal": "npx tsc && node bin/src/index.mjs ./samples/src/ ./samples/test/ --include-internal",
"test": "npx tsc && npx mocha bin/test/**",
"format": "prettier --write .",
"update": "npx tsc && yarn publish --access public"
},
"keywords": [
"solidity",
"specification",
"slang",
"foundry",
"testing",
"smart",
"contracts"
],
"author": "0xCompose",
"license": "ISC",
"dependencies": {
"@nomicfoundation/slang": "^0.19.0",
"@types/chai": "^5.0.1",
"@types/mocha": "^10.0.10",
"chai": "^5.1.2",
"chalk": "^5.4.1",
"mocha": "^11.0.1",
"mocha-suppress-logs": "^0.5.1"
},
"devDependencies": {
"@types/node": "^22.10.2",
"husky": "^9.1.7",
"ts-node": "^10.9.2",
"typescript": "^5.7.2"
}
}