-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
53 lines (53 loc) · 1.6 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
{
"name": "atomic-port",
"version": "0.0.2",
"description": "Cross-chain swap by HTLC between EVM-based blockchain and others",
"license": "MIT",
"author": "Symbol Blockchain Community",
"private": false,
"contributors": [
"faunsu19000",
"0x070696E65"
],
"repository": {
"type": "git",
"url": "https://github.com/ymuichiro/atomic-port"
},
"engines": {
"node": ">=12.22.1",
"yarn": "Do not use. This project is managed by npm workspace."
},
"bugs": "https://github.com/ymuichiro/atomic-port/issues",
"homepage": "https://github.com/ymuichiro/atomic-port",
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^5.46.1",
"@typescript-eslint/parser": "^5.46.1",
"eslint": "^8.29.0",
"eslint-config-google": "^0.14.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.2.1",
"npm-run-all": "^4.1.5",
"prettier": "^2.8.1",
"ts-node": "^10.9.1",
"typescript": "^4.9.4"
},
"workspaces": [
"packages/evm",
"packages/bitcoin",
"packages/symbol",
"packages/mona",
"packages/types"
],
"scripts": {
"build": "run-s build:*",
"build:evm": "npm run build -w packages/evm",
"build:symbol": "npm run build -w packages/symbol",
"build:bitcoin": "npm run build -w packages/bitcoin",
"build:mona": "npm run build -w packages/mona",
"test": "run-s test:*",
"test:evm": "npm run pre-build -w packages/evm",
"test:symbol": "npm run pre-build -w packages/symbol",
"test:bitcoin": "npm run pre-build -w packages/bitcoin",
"test:mona": "npm run pre-build -w packages/mona"
}
}