forked from permaswap/permaswap-js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
67 lines (67 loc) · 1.66 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
56
57
58
59
60
61
62
63
64
65
66
67
{
"name": "permaswap",
"version": "0.0.2",
"main": "./cjs/index.js",
"module": "./esm/index.js",
"files": [
"cjs",
"esm"
],
"repository": "[email protected]:permaswap/permaswap-js.git",
"keywords": [
"permaswap",
"everPay",
"ethereum",
"arweave",
"js",
"blockchain",
"crypto"
],
"description": "permaswap client JS-SDK, supports web and nodeJS to make swap",
"author": "everFinance Team <[email protected]>",
"contributors": [
"Xaber <[email protected]>"
],
"license": "MIT",
"scripts": {
"lint": "eslint src test",
"test": "jest",
"build": "rm -rf ./esm && rm -rf ./cjs && tsc -p tsconfig.json && tsc -p tsconfig.cjs.json",
"prepublish": "npm run build"
},
"sideEffects": false,
"devDependencies": {
"@babel/core": "^7.14.8",
"@babel/plugin-transform-modules-commonjs": "^7.14.5",
"@babel/preset-env": "^7.14.8",
"@babel/preset-typescript": "^7.14.5",
"@types/jest": "^26.0.24",
"@types/node": "^16.4.0",
"@types/ws": "^8.5.3",
"@typescript-eslint/eslint-plugin": "^4.28.4",
"@typescript-eslint/parser": "^4.28.3",
"babel-jest": "^27.0.6",
"eslint": "^7.31.0",
"eslint-config-standard": "^16.0.3",
"eslint-config-standard-with-typescript": "^20.0.0",
"eslint-plugin-import": "^2.23.4",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^5.1.0",
"jest": "^27.0.6",
"lint-staged": "^11.0.1",
"typescript": "^4.3.5"
},
"dependencies": {
"everpay": "^0.5.5",
"ws": "^8.9.0"
},
"gitHooks": {
"pre-commit": "lint-staged"
},
"lint-staged": {
"*.{js,ts}": [
"npm run lint",
"git add"
]
}
}