-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
65 lines (65 loc) · 1.91 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
{
"name": "@swisstronik/utils",
"version": "1.3.0",
"description": "Library with different utils for transaction encryption / decryption",
"source": "src/index.ts",
"module": "./build/esm/index.js",
"main": "./build/cjs/index.js",
"types": "./build/types/index.d.ts",
"type": "module",
"scripts": {
"build": "npm run build:cjs && npm run build:esm && npm run build:types && npm run fixup",
"build:cjs": "rm -rf build/cjs cjs && tsc -p tsconfig.cjs.json",
"build:esm": "rm -rf build/esm && tsc -p tsconfig.esm.json",
"build:types": "rm -rf build/types && tsc -p tsconfig.types.json",
"fixup": "bash ../../tools/fixup.sh",
"clean": "rm -rf build",
"package": "npm run build && npm pack",
"test": "jest --no-cache --runInBand",
"test:cov": "jest --coverage --no-cache --runInBand",
"addscope": "node ../../tools/packagejson name @swisstronik/swisstronik.js"
},
"publishConfig": {
"access": "public"
},
"files": [
"build/**/*",
"LICENSE",
"package.json",
"README.md"
],
"keywords": [
"swisstronik",
"encryption",
"deoxysii",
"x25519"
],
"license": "MIT",
"dependencies": {
"@noble/hashes": "^1.3.0",
"@oasisprotocol/deoxysii": "0.0.5",
"axios": "^1.3.6",
"bech32": "^2.0.0",
"rlp": "^3.0.0",
"tweetnacl": "^1.0.3",
"ethers": "5.7.2"
},
"devDependencies": {
"@commitlint/cli": "^17.6.1",
"@commitlint/config-conventional": "^13.1.0",
"@types/jest": "^27.0.1",
"@typescript-eslint/eslint-plugin": "^4.31.1",
"@typescript-eslint/parser": "^4.31.1",
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^4.0.0",
"jest": "^27.2.0",
"prettier": "^2.4.0",
"ts-jest": "^27.0.5",
"ts-loader": "^9.2.5",
"typescript": "^4.4.3",
"webpack": "^5.52.1",
"webpack-cli": "^4.8.0"
},
"gitHead": "f91d5febcbab9def4e50af1e4e0b27f5aa04b532"
}