-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 3.39 KB
/
Copy pathpackage.json
File metadata and controls
40 lines (40 loc) · 3.39 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
{
"private": true,
"type": "module",
"scripts": {
"build:userscripts": "node scripts/build-userscript.mjs",
"build:binance-userscripts": "node scripts/build-userscript.mjs binance-orderbook-trade binance-trading-data binance-coinmarketcap-data binance-strategy27-events binance-strategy29-bollinger",
"build:binance-strategy29-bollinger": "node scripts/build-userscript.mjs binance-strategy29-bollinger",
"check:binance-strategy29-bollinger": "node --check scripts/binance-strategy29-bollinger.user.js",
"inspect:binance-strategy29-bollinger": "node scripts/userscript-release-contract.mjs scripts/binance-strategy29-bollinger.user.js",
"test:binance-strategy29-bollinger": "node --test test/unit/binance-strategy29-bollinger/*.test.js test/dom/binance-strategy29-bollinger/*.test.js",
"build:binance-orderbook-trade": "node scripts/build-userscript.mjs binance-orderbook-trade",
"build:binance-trading-data": "node scripts/build-userscript.mjs binance-trading-data",
"build:binance-coinmarketcap-data": "node scripts/build-userscript.mjs binance-coinmarketcap-data",
"build:binance-strategy27-events": "node scripts/build-userscript.mjs binance-strategy27-events",
"build:m3u8-downloader": "node scripts/build-userscript.mjs m3u8-downloader",
"audit:brooks-media": "node scripts/brooks-media-audit.mjs",
"import:brooks-media-index": "node scripts/brooks-media-import-index.mjs",
"download:brooks-media": "node scripts/brooks-media-download.mjs",
"inspect:binance-orderbook-trade": "node scripts/userscript-release-contract.mjs scripts/binance-orderbook-trade.user.js",
"inspect:binance-strategy27-events": "node scripts/userscript-release-contract.mjs scripts/binance-strategy27-events.user.js",
"verify:binance-orderbook-stage3": "node scripts/binance-stage3-evidence.mjs",
"assemble:binance-orderbook-live": "node scripts/binance-live-capture.mjs",
"summarize:binance-orderbook-live": "node scripts/binance-live-performance.mjs",
"check:binance-userscripts": "node --check scripts/binance-orderbook-trade.user.js && node --check scripts/binance-trading-data.user.js && node --check scripts/binance-coinmarketcap-data.user.js && node --check scripts/binance-strategy27-events.user.js && node --check scripts/binance-strategy29-bollinger.user.js",
"check:binance-orderbook-trade": "node --check scripts/binance-orderbook-trade.user.js",
"check:m3u8-downloader": "node --check scripts/m3u8-downloader.user.js",
"test": "node --test 'test/unit/**/*.test.js' 'test/dom/**/*.test.js'",
"test:binance-orderbook-trade": "node --test test/unit/binance-orderbook-trade/*.test.js test/dom/binance-orderbook-trade/*.test.js",
"test:binance-orderbook-ui-toolchain": "node --test test/unit/binance-orderbook-trade/*.test.js test/dom/binance-orderbook-trade/*.test.js test/unit/binance-strategy29-bollinger/*.test.js test/dom/binance-strategy29-bollinger/*.test.js test/unit/binance-*.test.js",
"test:binance-strategy27-events": "node --test test/unit/binance-strategy27-events/*.test.js test/dom/binance-strategy27-events/*.test.js test/unit/userscript-metadata-icons.test.js test/unit/userscript-release-contract.test.js",
"test:ui": "playwright test",
"test:ui:headed": "playwright test --headed",
"test:ui:debug": "playwright test --debug"
},
"devDependencies": {
"@playwright/test": "^1.62.1",
"esbuild": "^0.25.0",
"jsdom": "^29.1.1"
}
}