forked from travist/jsencrypt
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
49 lines (49 loc) · 1.28 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
{
"name": "jsencrypt",
"version": "3.2.1",
"description": "A Javascript library to perform OpenSSL RSA Encryption, Decryption, and Key Generation.",
"main": "bin/jsencrypt.js",
"module": "lib/index.js",
"types": "lib/index.d.ts",
"dependencies": {},
"devDependencies": {
"typescript": "^4.2.4",
"webpack": "^5.35.1",
"webpack-cli": "^4.6.0"
},
"files": [
"bin",
"lib"
],
"scripts": {
"build:dev": "tsc && tsc --project tsconfig-def.json && webpack",
"build:prod": "tsc && tsc --project tsconfig-def.json && webpack --config webpack.prod.js",
"build": "npm run build:dev && npm run build:prod",
"serve": "bundle exec jekyll server --config _config.build.yml"
},
"author": "Travis Tidwell <travis@form.io>",
"contributors": [
{
"name": "Travis Tidwell",
"email": "travis@form.io",
"url": "http://github.com/travist"
},
{
"name": "Antonio",
"url": "https://github.com/zoloft"
},
{
"name": "Julio",
"url": "https://github.com/jmgaya"
}
],
"homepage": "http://www.travistidwell.com/jsencrypt",
"repository": {
"type": "git",
"url": "git://github.com/travist/jsencrypt.git"
},
"bugs": {
"url": "http://github.com/travist/jsencrypt/issues"
},
"license": "MIT"
}