-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 792 Bytes
/
package.json
File metadata and controls
36 lines (36 loc) · 792 Bytes
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
{
"name": "@verto/contracts",
"version": "0.0.3",
"author": "th8ta LLC",
"license": "MIT",
"publishConfig": {
"access": "public"
},
"main": "build/index.js",
"types": "build",
"files": [
"types.d.ts",
"build"
],
"scripts": {
"build": "node ./build.js",
"fmt": "prettier --write .",
"test": "node ./build.js && jest ./dist/tests",
"fmt:check": "prettier --check ."
},
"gitHooks": {
"pre-commit": "prettier --write . && git add -A"
},
"devDependencies": {
"@types/jest": "^27.0.2",
"arlocal": "^1.1.16",
"arlocal-utils": "^1.0.2",
"arweave": "^1.10.18",
"esbuild": "^0.11.12",
"jest": "^27.2.4",
"prettier": "^2.2.1",
"smartweave": "^0.4.46",
"typescript": "^4.2.4",
"yorkie": "^2.0.0"
}
}