-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
84 lines (84 loc) · 2.67 KB
/
package.json
File metadata and controls
84 lines (84 loc) · 2.67 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
{
"name": "commons-crypto",
"version": "0.3.0",
"description": "",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"scripts": {
"test": "npm run test:lint && npm run test:mocha",
"postinstall": "node fix_modules.js",
"test:lint": "eslint --ext \".js,.ts\" ./src",
"fix:lint": "eslint --fix --ext \".js,.ts\" ./src",
"test:mocha": "concurrently \"npm run test:mocha:node\" \"npm run test:mocha:browser\"",
"test:mocha:node": "cross-env TS_NODE_PROJECT=tsconfig.test.json mocha -r ts-node/register --recursive test/**/*.test.ts",
"test:mocha:browser": "mochapack --webpack-config webpack.browser-config.js -r test/browser/browser-helper.js --recursive test/browser/**/*.test.ts",
"build": "npm run build:node && npm run build:browser",
"build:node": "tsc",
"build:browser": "webpack --config webpack.browser-config.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jc-lab/commons-crypto.git"
},
"author": {
"name": "Joseph Lee",
"email": "development@jc-lab.net"
},
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/jc-lab/commons-crypto/issues"
},
"homepage": "https://github.com/jc-lab/commons-crypto#readme",
"files": [
"lib",
"fix_modules.js",
"LICENSE",
"README.md"
],
"devDependencies": {
"@babel/core": "^7.12.10",
"@babel/preset-env": "^7.12.11",
"@types/bn.js": "^4.11.6",
"@types/chai": "^4.3.0",
"@types/elliptic": "^6.4.12",
"@types/mocha": "^7.0.2",
"@types/node": "^13.13.38",
"@types/node-forge": "^0.9.5",
"@typescript-eslint/eslint-plugin": "^5.9.0",
"@typescript-eslint/parser": "^5.9.0",
"babel-loader": "^8.2.2",
"chai": "^4.3.6",
"concurrently": "^5.3.0",
"cross-env": "^7.0.3",
"crypto-browserify": "^3.12.0",
"eslint": "^8.6.0",
"mocha": "^9.2.0",
"mochapack": "^2.1.4",
"readable-stream": "~3.5.0",
"stream-browserify": "^3.0.0",
"ts-loader": "^8.0.12",
"ts-node": "^8.10.2",
"tsc": "^1.20150623.0",
"typescript": "^3.9.7",
"webpack": "^5.65.0",
"webpack-cli": "^4.9.1"
},
"dependencies": {
"@peculiar/asn1-ecc": "^2.3.3",
"@peculiar/asn1-pkcs8": "^2.3.3",
"@peculiar/asn1-rsa": "^2.3.3",
"@peculiar/asn1-schema": "^2.3.3",
"@peculiar/asn1-x509": "^2.3.3",
"asn1js": "^3.0.5",
"bn.js": "^5.2.1",
"browserify-rsa": "^4.1.0",
"buffer": "^6.0.3",
"create-hash": "^1.2.0",
"create-hmac": "^1.1.7",
"elliptic": "https://github.com/openpgpjs/elliptic.git#3c323914344ab316036623e362db552d016366f9",
"hash.js": "^1.1.7",
"pvutils": "^1.0.17",
"randombytes": "^2.1.0"
},
"packageManager": "yarn@3.3.0"
}