-
Notifications
You must be signed in to change notification settings - Fork 36
/
package.json
62 lines (62 loc) · 1.33 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
{
"name": "jkurwa",
"version": "1.21.2",
"description": "Ukrainian national EC cryptography (DSTU-4145) implementaion",
"main": "lib/index.js",
"browser": {
"./lib/rand.js": "./lib/rand.browser.js"
},
"jest": {
"testRegex": [
"test/test.*.js"
],
"setupFiles": [
"./test/setup.js"
]
},
"scripts": {
"test": "jest ./test/test*.js",
"cover": "npm run test -- --coverage"
},
"repository": {
"type": "git",
"url": "[email protected]:dstucrypt/jkurwa"
},
"keywords": [
"ecc",
"cryptography",
"dstu4145",
"ukraine"
],
"author": "Ilya Petrov",
"license": "BSD",
"bugs": {
"url": "https://github.com/dstucrypt/jkurwa/issues"
},
"homepage": "https://github.com/dstucrypt/jkurwa/",
"devDependencies": {
"codecov": "^3.8.1",
"eslint": "^5.9.0",
"eslint-config-airbnb": "^17.1.0",
"eslint-config-prettier": "^4.2.0",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-jsx-a11y": "^6.1.2",
"eslint-plugin-react": "^7.11.1",
"gost89": "^0.1.11",
"jest": "^26.0.1",
"prettier": "^1.17.0"
},
"dependencies": {
"asn1.js": "muromec/asn1.js",
"bn.js": ">= 0.14",
"buffer": ">= 3.0",
"jksreader": "^1.0.0",
"js-lzma": "0.x"
},
"eslintConfig": {
"extends": [
"airbnb",
"prettier"
]
}
}