-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
55 lines (55 loc) · 1.24 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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
{
"name": "aggregate-undead-poc",
"version": "0.2.0",
"description": "Aggregate Undead Transaction for Symbol PoC",
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"author": "Shinichi Hanayama <[email protected]>",
"license": "MIT",
"private": true,
"engines": {
"node": ">=12.22.1"
},
"dependencies": {
"@opensphere-inc/symbol-service": "^1.0.9",
"js-sha3": "https://github.com/Propine/js-sha3.git",
"moment": "^2.29.4",
"prompts": "^2.4.2",
"symbol-sdk": "^2.0.3",
"uuid": "^9.0.0"
},
"devDependencies": {
"@types/jest": "^29.2.4",
"@types/prompts": "^2.4.2",
"@types/uuid": "^9.0.0",
"jest": "^29.3.1",
"rimraf": "^3.0.2",
"ts-jest": "^29.0.3",
"typescript": "^4.9.4"
},
"jest": {
"moduleFileExtensions": [
"ts",
"js"
],
"transform": {
"^.+\\.ts$": [
"ts-jest",
{
"tsconfig": "tsconfig.json"
}
]
},
"testMatch": [
"**/test/**/*.test.ts"
],
"testEnvironment": "node"
},
"scripts": {
"clean": "rimraf dist",
"test": "jest",
"build": "yarn clean && tsc",
"undead-create": "node dist/samples/create.js",
"undead-cast": "node dist/samples/cast.js"
}
}