This repository has been archived by the owner on Jun 25, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
60 lines (60 loc) · 1.65 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
{
"name": "jose4js",
"version": "0.0.1",
"description": "JOSE library for signing and encryption in JavaScript, using WebCryptoAPI",
"main": "lib/index.js",
"browser": {
"node-webcrypto-ossl": false
},
"config": {
"browsers": "Firefox"
},
"scripts": {
":clean:coverage": "rimraf coverage/",
"clean": "npm run :clean:coverage",
":lint:test": "eslint test/**/*.js",
":lint:lib": "eslint lib/**/*.js",
"lint": "npm-run-all :lint:*",
"pretest": "npm run lint && npm run :clean:coverage",
"test": "nyc mocha test/**/*-test.js && karma start --browsers=$npm_package_config_browsers"
},
"repository": {
"type": "git",
"url": "git+https://github.com/linuxwolf/jose4js.git"
},
"keywords": [
"jose",
"crypto",
"security",
"signatures",
"encryption"
],
"author": "Matthew A. Miller <[email protected]>",
"license": "MPL-2.0",
"bugs": {
"url": "https://github.com/linuxwolf/jose4js/issues"
},
"homepage": "https://github.com/linuxwolf/jose4js#readme",
"devDependencies": {
"chai": "^4.1.0",
"eslint": "^4.2.0",
"istanbul-instrumenter-loader": "^2.0.0",
"karma": "^1.7.0",
"karma-chrome-launcher": "^2.2.0",
"karma-coverage-istanbul-reporter": "^1.3.0",
"karma-firefox-launcher": "^1.0.1",
"karma-mocha": "^1.3.0",
"karma-mocha-reporter": "^2.2.3",
"karma-sourcemap-loader": "^0.3.7",
"karma-webpack": "^2.0.4",
"mocha": "^3.4.2",
"npm-run-all": "^4.0.2",
"nyc": "^11.0.3",
"webpack": "^3.4.0"
},
"dependencies": {
"is-node": "^1.0.2",
"node-webcrypto-ossl": "^1.0.30",
"text-encoding-utf-8": "^1.0.1"
}
}