This repository has been archived by the owner on Feb 25, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
78 lines (78 loc) · 2.05 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
72
73
74
75
76
77
78
{
"name": "@trust/jwa",
"version": "0.4.6",
"description": "JSON Web Algorithms",
"main": "lib/index.js",
"directories": {
"test": "test"
},
"files": [
"lib",
"dist"
],
"scripts": {
"build-lib": "babel src -d lib",
"build": "npm run clean-lib && npm run build-lib",
"clean-lib": "rm -rf lib/*",
"build-dist": "webpack --progress --colors --optimize-minimize",
"dist": "npm run build && npm run build-dist",
"prepublish": "npm run build && npm run build-dist",
"test": "./node_modules/.bin/nyc ./node_modules/.bin/_mocha test",
"karma": "karma start",
"jsdoc": "./node_modules/.bin/jsdoc -c jsdoc.json -r",
"coverage": "./node_modules/.bin/nyc --reporter=lcov ./node_modules/.bin/_mocha test"
},
"repository": {
"type": "git",
"url": "https://github.com/anvilresearch/jwa.git"
},
"author": "MIT Connection Science",
"contributors": [
{
"name": "Christian Smith",
"email": "[email protected]",
"url": "http://anvil.io"
},
{
"name": "Greg Linklater",
"email": "[email protected]",
"url": "https://github.com/EternalDeiwos"
},
{
"name": "Dmitri Zagidulin",
"url": "https://github.com/dmitrizagidulin"
},
{
"name": "Ioan Budea",
"url": "ihttps://github.com/johnny90"
}
],
"license": "MIT",
"bugs": {
"url": "https://github.com/anvilresearch/jwa/issues"
},
"homepage": "https://github.com/anvilresearch/jwa#README",
"dependencies": {
"@trust/webcrypto": "^0.5.0",
"base64url": "^2.0.0",
"text-encoding": "^0.6.1"
},
"devDependencies": {
"@trust/keyto": "^0.3.0",
"babel-cli": "^6.24.1",
"babel-core": "^6.24.1",
"babel-loader": "^6.4.1",
"babel-preset-es2015": "^6.24.1",
"chai": "^3.5.0",
"chai-as-promised": "^6.0.0",
"codecov": "^2.3.0",
"dirty-chai": "^2.0.0",
"karma": "^1.1.2",
"karma-chrome-launcher": "^1.0.1",
"karma-mocha": "^1.1.1",
"karma-webpack": "^1.7.0",
"mocha": "^3.0.0",
"nyc": "^11.1.0",
"webpack": "^2.5.1"
}
}