-
-
Notifications
You must be signed in to change notification settings - Fork 17
/
package.json
43 lines (43 loc) · 1.32 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
{
"name": "js-x509-utils",
"version": "1.0.7",
"description": "Universal Module of X.509 Certificate Utilities in JavaScript",
"main": "dist/index.js",
"scripts": {
"test": "yarn jest",
"karma": "karma start",
"karma:window": "yarn webpack && cross-env TEST_ENV=window karma start",
"babel": "cross-env NODE_ENV=production tsc --build ./tsconfig.json",
"webpack": "webpack --mode development --config webpack.config.js",
"webpack:prod": "webpack --mode production --config webpack.config.js",
"build": "rm -rf ./dist && yarn babel && yarn webpack:prod",
"cleanup": "rm -rf ./dist coverage ./node_modules"
},
"author": "Jun Kurihara",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/junkurihara/js-x509-utils.git"
},
"bugs": {
"url": "https://github.com/junkurihara/jscu/issues"
},
"homepage": "https://github.com/junkurihara/jscu/tree/master/packages/js-x509-utils#readme",
"keywords": [
"crypto",
"x509",
"certificate",
"rfc5280"
],
"dependencies": {
"asn1.js": "~5.4.1",
"asn1.js-rfc5280": "~3.0.0",
"bn.js": "~5.2.0",
"buffer": "~6.0.0",
"js-crypto-ec": "^1.0.7",
"js-crypto-key-utils": "^1.0.7",
"js-crypto-random": "^1.0.5",
"js-crypto-rsa": "^1.0.7",
"js-encoding-utils": "0.7.3"
}
}