forked from square/js-jose
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
35 lines (35 loc) · 952 Bytes
/
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
{
"name": "jose-jwe-jws",
"version": "0.1.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"
},
"devDependencies": {
"coveralls": "^2.11.1",
"grunt": "~0.4.1",
"grunt-contrib-concat": "^0.5.0",
"grunt-contrib-jshint": "^0.10.0",
"grunt-contrib-uglify": "^0.6.0",
"grunt-karma": "^0.9.0",
"grunt-karma-coveralls": "^2.5.3",
"karma": "^0.12.28",
"karma-chrome-launcher": "^0.1.5",
"karma-coverage": "^0.2.7",
"karma-qunit": "^0.1.4",
"qunitjs": "^1.15.0"
},
"typings": "jose-jwe-jws.d.ts",
"main": "dist/jose-commonjs.js"
}