-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
107 lines (107 loc) · 2.29 KB
/
package.json
File metadata and controls
107 lines (107 loc) · 2.29 KB
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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
{
"name": "x448-js",
"version": "1.0.1",
"private": false,
"description": "Pure JS/TS library with X448 curve for ECDH",
"keywords": [
"X448",
"ECDH"
],
"repository": {
"type": "git",
"url": "https://github.com/Iskander508/X448-js.git"
},
"license": "MIT",
"author": "Pavel Zarecky <zarecky@procivis.ch>",
"sideEffects": false,
"main": "dist/index.js",
"module": "dist/x448-js.esm.js",
"typings": "dist/index.d.ts",
"files": [
"src/",
"dist/",
"LICENSE",
"README.md"
],
"scripts": {
"build": "tsdx build",
"format": "tsdx lint src --fix",
"lint": "tsdx lint src",
"prepare": "tsdx build",
"semantic-release": "semantic-release",
"start": "tsdx watch",
"test": "tsdx test"
},
"prettier": {
"trailingComma": "all"
},
"dependencies": {
"jsbn": "^1.1.0"
},
"devDependencies": {
"@types/jsbn": "^1.2.30",
"@typescript-eslint/eslint-plugin": "4.33.0",
"@typescript-eslint/parser": "4.33.0",
"eslint-plugin-import": "2.25.2",
"eslint-plugin-jest": "25.0.1",
"prettier-plugin-packagejson": "2.2.13",
"semantic-release": "^18.0.1",
"semantic-release-cli": "5.4.4",
"tsdx": "0.14.1",
"tslib": "2.3.1",
"typescript": "4.4.4"
},
"peerDependencies": {},
"eslint": {
"env": {
"es6": true,
"jest": true,
"node": true
},
"parser": "@typescript-eslint/parser",
"parserOptions": {
"ecmaVersion": 2019,
"sourceType": "module"
},
"extends": [
"eslint:recommended",
"plugin:jest/recommended",
"plugin:import/recommended",
"plugin:@typescript-eslint/eslint-recommended",
"plugin:@typescript-eslint/recommended"
],
"rules": {
"curly": "error",
"import/order": [
"error",
{
"newlines-between": "always"
}
]
},
"settings": {
"import/extensions": [
".ts"
],
"import/resolver": {
"node": {
"extensions": [
".ts"
]
}
}
}
},
"renovate": {
"extends": [
"config:js-lib",
":automergePatch",
":automergeBranch",
":automergePatch",
":automergeBranch",
":automergeLinters",
":automergeTesters",
":automergeTypes"
]
}
}