-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
34 lines (34 loc) · 1.3 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
{
"name": "dfs_iota_research",
"version": "1.0.0",
"description": "algo usage research for IOTA cumulative weight calculation ",
"main": "index.js",
"scripts": {
"build": "tsc -p . --declaration",
"test": "./node_modules/mocha/bin/_mocha test/Graph.spec.ts --require ts-node/register --timeout 999999",
"stats0": "npx ts-node test/Stats0.spec.ts --require ts-node/register --timeout 999999",
"stats": "npx ts-node test/Stats.spec.ts --require ts-node/register --timeout 999999 -max-old-space-size=24000",
"stats2": "npx ts-node test/Stats2.spec.ts --require ts-node/register --timeout 999999",
"stats3": "npx ts-node test/Stats3.spec.ts --require ts-node/register --timeout 999999",
"tangle": "npx ts-node test/IotaGraphBuilder.spec.ts --require ts-node/register --timeout 999999"
},
"repository": "https://bitbucket.org/andrasferenczi7/dfs_iota_research",
"author": "Andras L Ferenczi",
"license": "MIT",
"devDependencies": {
"@types/chai": "^4.2.22",
"@types/mocha": "^9.0.0",
"@types/node": "^16.11.6",
"chai": "^4.3.4",
"jest": "^29.5.0",
"mocha": "^9.1.3",
"random-dag": "^1.0.4",
"ts-node": "^10.4.0",
"typescript": "^4.4.4"
},
"dependencies": {
"@iota/client": "^2.2.2",
"index": "^0.4.0",
"typescript-map": "^0.1.0"
}
}