-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 2.18 KB
/
package.json
File metadata and controls
52 lines (52 loc) · 2.18 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
48
49
50
51
52
{
"type": "module",
"scripts": {
"build": "node tools/bundle-aos.mjs",
"format:fix": "prettier --write .",
"lint": "luacheck src spec",
"test": "yarn format:fix && yarn test:unit && yarn test:integration",
"test:unit": "rm -rf coverage && mkdir -p coverage && busted . && luacov",
"test:unit:debug": "rm -rf coverage && mkdir -p coverage && DEBUG=true busted . && luacov",
"test:coverage": "rm -rf luacov-html && yarn test:unit && luacov --reporter html && open luacov-html/index.html",
"test:integration": "yarn build && node --test --experimental-wasm-memory64 **/*.test.mjs",
"patch:new": "node patch.mjs $1",
"monitor:down": "docker compose -f tests/monitor/docker-compose.test.yml down",
"monitor": "yarn monitor:down && node --test tests/monitor/monitor.test.mjs",
"monitor:devnet": "yarn monitor:down && ARIO_NETWORK_PROCESS_ID=GaQrvEMKBpkjofgnBi_B3IgIDmY_XYelVLB6GcRGrHc node --test tests/monitor/monitor.test.mjs",
"monitor:testnet": "yarn monitor:down && ARIO_NETWORK_PROCESS_ID=agYcCFJtrMG6cqMuZfskIkFTGvUPddICmtQSBIoPdiA node --test tests/monitor/monitor.test.mjs",
"monitor:mainnet": "yarn monitor:down && ARIO_NETWORK_PROCESS_ID=qNvAoz0TgcH7DMg8BCVn8jF32QH5L6T29VjHxhHqqGE node --test tests/monitor/monitor.test.mjs",
"crank:mainnet": "ARIO_NETWORK_PROCESS_ID=qNvAoz0TgcH7DMg8BCVn8jF32QH5L6T29VjHxhHqqGE node --test tests/monitor/cranking-monitor.test.mjs",
"tick": "node tools/tick.mjs",
"total-supply": "node tools/total-supply.mjs",
"evolve": "yarn build && node tools/evolve.mjs",
"prepare": "husky"
},
"devDependencies": {
"@ar.io/sdk": "^3.23.0",
"@permaweb/ao-loader": "^0.0.36",
"@permaweb/aoconnect": "^0.0.59",
"arweave": "^1.15.1",
"ethers": "^6.16.0",
"husky": "^9.1.6",
"lint-staged": "^15.2.10",
"markdown-toc-gen": "^1.1.0",
"p-limit": "^6.2.0",
"prettier": "^3.3.2",
"testcontainers": "^10.13.1",
"ts-node": "^10.9.2",
"ts-node-esm": "^0.0.6",
"yargs": "^17.7.2"
},
"lint-staged": {
"*.lua": [
"stylua"
],
"*.md": [
"markdown-toc-gen insert"
],
"*": [
"prettier --write ."
]
},
"license": "AGPL-3.0-or-later"
}