This repository has been archived by the owner on Jan 7, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
73 lines (73 loc) · 1.79 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
68
69
70
71
72
73
{
"name": "@zbayapp/identity",
"version": "3.3.4",
"description": "Zbay tools for creating certificates and signing messages",
"main": "lib/index.js",
"types": "lib/index.d.js",
"scripts": {
"build": "tsc",
"test": "jest",
"test-ci": "jest --colors --collectCoverage --ci",
"lint": "eslint --ext .jsx,.js,.ts,.tsx ./src/",
"check-style": "prettier --check src/**",
"prepublish": "tsc"
},
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/ZbayApp/identity.git"
},
"keywords": [
"zbay",
"identity",
"certificate"
],
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/ZbayApp/identity/issues"
},
"homepage": "https://github.com/ZbayApp/identity#readme",
"files": [
"/lib/**/*"
],
"jest": {
"transform": {
"^.+\\.tsx?$": "ts-jest",
"^.+\\.jsx?$": "babel-jest"
},
"testPathIgnorePatterns": [
"node_modules/"
],
"testRegex": ".*\\.test\\.(t|j)s$",
"testEnvironment": "node"
},
"dependencies": {
"@peculiar/webcrypto": "1.2.2",
"pkijs": "~2.1.97"
},
"devDependencies": {
"@types/jest": "^26.0.23",
"@types/node": "^14.17.6",
"@types/pkijs": "0.0.10",
"@typescript-eslint/eslint-plugin": "^4.27.0",
"@typescript-eslint/parser": "^4.27.0",
"babel-jest": "^26.6.3",
"eslint": "^7.28.0",
"eslint-config-standard": "^16.0.3",
"eslint-plugin-import": "^2.23.4",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^5.1.0",
"jest": "^26.6.3",
"node-webcrypto-ossl": "^2.1.2",
"prettier": "^2.3.1",
"prettier-config-standard": "^4.0.0",
"ts-jest": "^26.5.6",
"typescript": "^4.3.2"
},
"publishConfig": {
"access": "public"
},
"engines": {
"node": ">=12.10.0 <13.0.0"
}
}