-
-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
87 lines (87 loc) · 2.38 KB
/
Copy pathpackage.json
File metadata and controls
87 lines (87 loc) · 2.38 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
{
"name": "metal-on-symbol",
"version": "0.3.1",
"description": "Metal on Symbol PoC",
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"author": "Shinichi Hanayama <hanatyan@opensphere.co.jp>",
"license": "MIT",
"private": false,
"repository": {
"type": "git",
"url": "git+https://github.com/OPENSPHERE-Inc/metal-on-symbol.git"
},
"bugs": {
"url": "https://github.com/OPENSPHERE-Inc/metal-on-symbol/issues"
},
"homepage": "https://github.com/OPENSPHERE-Inc/metal-on-symbol/issues#readme",
"engines": {
"node": ">=12.22.1"
},
"devDependencies": {
"@types/jest": "^29.2.3",
"@types/long": "^5.0.0",
"@types/mime": "^3.0.4",
"@types/prompts": "^2.4.2",
"@types/uuid": "^8.3.4",
"cross-env": "^7.0.3",
"jest": "^29.4.1",
"rimraf": "^3.0.2",
"ts-jest": "^29.0.5",
"typescript": "^4.9.3"
},
"dependencies": {
"@opensphere-inc/symbol-service": "^1.3.1",
"bs58": "^5.0.0",
"catbuffer-typescript": "^1.0.2",
"dotenv": "^16.0.3",
"js-base64": "^3.7.3",
"js-sha3": "https://github.com/Propine/js-sha3.git",
"long": "^5.2.1",
"mime": "^3.0.0",
"moment": "^2.29.4",
"prompts": "^2.4.2",
"symbol-openapi-typescript-fetch-client": "^1.0.3",
"symbol-sdk": "^2.0.4",
"uuid": "^9.0.0"
},
"jest": {
"moduleFileExtensions": [
"ts",
"js"
],
"transform": {
"^.+\\.ts$": [
"ts-jest",
{
"tsconfig": "tsconfig.json"
}
]
},
"testMatch": [
"**/test/**/*.test.ts"
],
"testEnvironment": "node"
},
"scripts": {
"clean": "rimraf dist",
"write-version": "node echo_version.js src/package_version.ts",
"build": "yarn clean && yarn write-version && tsc",
"test": "jest",
"forge": "node dist/cli/main.js forge",
"verify": "node dist/cli/main.js verify",
"scrap": "node dist/cli/main.js scrap",
"fetch": "node dist/cli/main.js fetch",
"reinforce": "node dist/cli/main.js reinforce",
"encrypt": "node dist/cli/main.js encrypt",
"decrypt": "node dist/cli/main.js decrypt",
"build-pack": "yarn build && yarn pack",
"build-publish": "yarn build && yarn publish",
"scrap-v1": "node dist/cli/main.js scrap-v1",
"reinforce-v1": "node dist/cli/main.js reinforce-v1",
"cli-help": "node dist/cli/main.js --help"
},
"bin": {
"metal": "./dist/cli/main.js"
}
}