-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
40 lines (40 loc) · 1.23 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
{
"name": "@atixlabs/mina-testing-utils",
"version": "0.0.1a3",
"description": "Handful MINA testing utilx to be used alongside with zkapp-cli generated projects",
"main": "lib/index.js",
"types": "lib/types.ts",
"bin": "cli/cli.cjs",
"type": "module",
"scripts": {
"test": "node --experimental-wasm-threads node_modules/jest/bin/jest.js",
"lint": "tslint -c tslint.json 'lib/**/*.ts' 'test/**/*.ts'",
"build": "rimraf ./dist && npm run build:lib && npm run build:cli && cp package* ./dist/",
"build:lib": "tsc -p ./tsconfig.lib.json && cp lib/types.ts ./dist/lib/",
"build:cli": "cp -r ./cli ./dist/",
"dev-pack": "npm run build && npm pack ./dist/",
"release:alpha": "git cz bump --prerelease alpha --changelog",
"release": "git cz bump --changelog"
},
"author": "Atixlabs",
"license": "MIT",
"devDependencies": {
"@jest/globals": "29.6.2",
"@types/jest": "29.5.3",
"jest": "29.7.0",
"rimraf": "5.0.1",
"ts-jest": "29.1.1",
"tslint": "6.1.3",
"typescript": "5.1.6"
},
"peerDependencies": {
"o1js": "0.13.*"
},
"dependencies": {
"cfonts": "3.2.0",
"chalk": "4.1.2",
"cli-table": "^0.3.11",
"commander": "^11.0.0",
"spinnies": "0.5.1"
}
}