-
-
Notifications
You must be signed in to change notification settings - Fork 2k
/
package.json
71 lines (71 loc) · 2.23 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
{
"name": "jsencrypt",
"version": "3.3.1",
"description": "A Javascript library to perform OpenSSL RSA Encryption, Decryption, and Key Generation.",
"main": "bin/jsencrypt.js",
"module": "lib/index.js",
"browser": "lib/index.js",
"types": "lib/index.d.ts",
"dependencies": {},
"devDependencies": {
"@babel/core": "^7.20.12",
"@babel/preset-env": "^7.20.2",
"@babel/preset-typescript": "^7.18.6",
"@babel/register": "^7.18.9",
"@types/expect": "^24.3.0",
"@types/mocha": "^10.0.0",
"@types/node": "^18.11.4",
"chai": "^4.3.6",
"dirty-chai": "^2.0.1",
"fs-jetpack": "^5.1.0",
"mocha": "^10.0.0",
"process": "^0.11.10",
"ts-mocha": "^10.0.0",
"ts-node": "^10.9.1",
"typescript": "^4.2.4",
"url": "^0.11.0",
"webpack": "^5.35.1",
"webpack-cli": "^4.6.0"
},
"files": [
"bin",
"lib"
],
"scripts": {
"build:dev": "tsc && tsc --project tsconfig-def.json && webpack",
"build:test": "tsc && tsc --project tsconfig-def.json && webpack --config webpack.test.js",
"build:prod": "tsc && tsc --project tsconfig-def.json && webpack --config webpack.prod.js",
"build": "npm run build:dev && npm run build:test && npm run build:prod",
"serve": "bundle exec jekyll server --config _config.build.yml",
"test": "ts-mocha test/test.rsa.js"
},
"author": "Travis Tidwell <[email protected]>",
"contributors": [
{
"name": "Travis Tidwell",
"email": "[email protected]",
"url": "https://github.com/travist"
},
{
"name": "Antonio",
"url": "https://github.com/zoloft"
},
{
"name": "Julio",
"url": "https://github.com/jmgaya"
},
{
"name": "Taehyun Hwang",
"url": "https://github.com/HwangTaehyun"
}
],
"homepage": "http://www.travistidwell.com/jsencrypt",
"repository": {
"type": "git",
"url": "git://github.com/travist/jsencrypt.git"
},
"bugs": {
"url": "https://github.com/travist/jsencrypt/issues"
},
"license": "MIT"
}