forked from digitalbazaar/vc
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
116 lines (116 loc) · 3.4 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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
{
"name": "vc-js",
"version": "0.6.5-0",
"description": "Verifiable Credentials JavaScript library.",
"homepage": "https://github.com/digitalbazaar/vc-js",
"author": {
"name": "Digital Bazaar, Inc.",
"email": "support@digitalbazaar.com",
"url": "https://digitalbazaar.com/"
},
"contributors": [
"Dave Longley <dlongley@digitalbazaar.com>",
"David I. Lehn <dlehn@digitalbazaar.com>",
"Dmitri Zagidulin <dmitriz@digitalbazaar.com>"
],
"repository": {
"type": "git",
"url": "https://github.com/digitalbazaar/vc-js"
},
"bugs": {
"url": "https://github.com/digitalbazaar/vc-js/issues",
"email": "support@digitalbazaar.com"
},
"license": "BSD-3-Clause",
"main": "lib/index.js",
"bin": {
"vc-js": "bin/vc-js"
},
"files": [
"bin/vc-js",
"dist/*.js",
"dist/*.js.map",
"lib/*.js",
"lib/contexts"
],
"dependencies": {
"commander": "^2.20.3",
"credentials-context": "^1.0.0",
"debug": "^4.1.1",
"fs-extra": "^8.1.0",
"get-stdin": "^7.0.0",
"jsonld": "^2.0.2",
"jsonld-signatures": "^5.0.0",
"supports-color": "^7.1.0"
},
"browser": {
"bs58": false,
"crypto": false,
"sodium-native": false,
"util": false
},
"devDependencies": {
"@babel/cli": "^7.8.3",
"@babel/core": "^7.8.3",
"@babel/node": "^7.8.3",
"@babel/plugin-proposal-object-rest-spread": "^7.8.3",
"@babel/plugin-transform-modules-commonjs": "^7.8.3",
"@babel/plugin-transform-runtime": "^7.8.3",
"@babel/polyfill": "^7.8.3",
"@babel/preset-env": "^7.8.3",
"@babel/register": "^7.8.3",
"@babel/runtime": "^7.8.3",
"babel-loader": "^8.0.5",
"browserify": "^16.2.3",
"chai": "^4.1.2",
"core-js": "^3.6.4",
"cross-env": "^7.0.0",
"crypto-ld": "^3.7.0",
"did-context": "^2.0.0",
"did-veres-one": "^10.0.1",
"eslint": "^6.8.0",
"eslint-config-digitalbazaar": "^2.0.0",
"eslint-plugin-jsdoc": "^20.3.1",
"karma": "^4.4.1",
"karma-babel-preprocessor": "^8.0.0",
"karma-chai": "^0.1.0",
"karma-chrome-launcher": "^3.1.0",
"karma-mocha": "^1.3.0",
"karma-mocha-reporter": "^2.2.5",
"karma-sourcemap-loader": "^0.3.7",
"karma-webpack": "^4.0.2",
"mocha": "^7.0.0",
"nyc": "^15.0.0",
"regenerator-runtime": "^0.13.1",
"uuid": "^3.4.0",
"veres-one-context": "^11.0.0",
"webpack": "^4.41.5",
"webpack-cli": "^3.3.10",
"webpack-merge": "^4.2.2"
},
"engines": {
"node": ">=8"
},
"keywords": [
"JSON",
"Linked Data",
"JSON-LD",
"RDF",
"Semantic Web",
"Verifiable Claim",
"Credential"
],
"scripts": {
"prepublish": "npm run build",
"build": "webpack",
"fetch-test-suites": "npm run fetch-vc-test-suite",
"fetch-vc-test-suite": "if [ ! -e test-suites/vc-test-suite ]; then git clone --depth 1 https://github.com/digitalbazaar/vc-test-suite.git test-suites/vc-test-suite; fi",
"test": "bin/vc-test",
"test-node": "mocha ./tests/*.spec.js --opts ./tests/mocha.opts --require @babel/polyfill --require @babel/register",
"test-karma": "karma start karma.conf.js",
"lint": "eslint '*.js' 'lib/**.js' 'tests/**.js' bin/vc-js",
"coverage": "cross-env NODE_ENV=test nyc --reporter=lcov --reporter=text-summary npm run test-node",
"coverage-ci": "cross-env NODE_ENV=test nyc --reporter=text-lcov npm run test-node > coverage.lcov",
"coverage-report": "nyc report"
}
}