-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathpackage.json
40 lines (40 loc) · 1.14 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
{
"name": "@layerswap/layerswap-atomic-bridge",
"version": "0.0.1",
"description": "",
"license": "MIT",
"private": false,
"repository": {
"type": "git",
"url": "https://github.com/layerswap/layerswap-atomic-bridge"
},
"engines": {
"node": ">=12.22.1"
},
"bugs": "https://github.com/layerswap/layerswap-atomic-bridge/issues",
"homepage": "https://github.com/layerswap/layerswap-atomic-bridge",
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^7.1.0",
"@typescript-eslint/parser": "^7.1.0",
"eslint": "^8.57.0",
"eslint-config-google": "^0.14.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.1.3",
"npm-run-all": "^4.1.5",
"prettier": "^3.2.5",
"ts-node": "^10.9.2",
"typescript": "^5.3.3"
},
"workspaces": [
"packages/bitcoin",
"packages/evm"
],
"scripts": {
"build": "run-s build:*",
"build:evm": "npm run build -w packages/evm",
"build:bitcoin": "npm run build -w packages/bitcoin",
"test": "run-s test:*",
"test:evm": "npm run pre-build -w packages/evm",
"test:bitcoin": "npm run pre-build -w packages/bitcoin"
}
}