This repository has been archived by the owner on Feb 27, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 91
/
package.json
62 lines (62 loc) · 1.71 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
{
"name": "jose-jwe-jws",
"version": "0.2.2",
"description": "Library to encrypt and decrypt data in JSON Web Encryption (JWE) format and to sign data in JSON Web Signature (JWS) format. Leverages Browser's native web crypto API.",
"keywords": [
"crypto",
"jwe",
"jws",
"encrypt",
"decrypt",
"sign",
"verify"
],
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "https://github.com/square/js-jose.git"
},
"scripts": {
"build": "grunt",
"lint": "eslint lib --fix",
"test": "jest"
},
"devDependencies": {
"@babel/core": "^7.4.5",
"@babel/preset-env": "^7.4.5",
"@webpack-cli/init": "^0.3.0",
"babel": "^6.23.0",
"babel-core": "^6.26.3",
"babel-jest": "^25.1.0",
"babel-loader": "^8.0.4",
"babel-plugin-syntax-dynamic-import": "^6.18.0",
"coveralls": "^3.0.5",
"eslint": "^6.0.1",
"eslint-config-standard": "^14.1.0",
"eslint-plugin-import": "^2.18.0",
"eslint-plugin-jest": "^23.1.1",
"eslint-plugin-node": "^11.0.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.0",
"grunt": "^1.0.4",
"grunt-contrib-concat": "^1.0.1",
"grunt-contrib-uglify": "^4.0.1",
"grunt-eslint": "^22.0.0",
"grunt-karma": "^3.0.2",
"grunt-karma-coveralls": "^2.5.4",
"grunt-run": "^0.8.1",
"grunt-webpack": "^3.1.3",
"jest": "^26.1.0",
"karma": "^4.4.1",
"karma-chrome-launcher": "^3.1.0",
"karma-coverage": "^2.0.1",
"karma-qunit": "^4.0.0",
"qunit": "^2.9.2",
"terser": "^4.1.2",
"uglifyjs-webpack-plugin": "^2.0.1",
"webpack": "^4.20.2",
"webpack-cli": "^3.1.1"
},
"typings": "jose-jwe-jws.d.ts",
"main": "dist/jose.min.js"
}