forked from digitalbazaar/ed25519-signature-2018
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
83 lines (83 loc) · 2.37 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
{
"name": "@digitalbazaar/ed25519-signature-2018",
"version": "2.0.2-0",
"description": "Ed25519Signature2018 Linked Data Proof suite for use with jsonld-signatures.",
"homepage": "https://github.com/digitalbazaar/ed25519-signature-2018",
"author": {
"name": "Digital Bazaar, Inc.",
"email": "[email protected]",
"url": "https://digitalbazaar.com/"
},
"repository": {
"type": "git",
"url": "https://github.com/digitalbazaar/ed25519-signature-2018"
},
"bugs": {
"url": "https://github.com/digitalbazaar/ed25519-signature-2018/issues",
"email": "[email protected]"
},
"license": "BSD-3-Clause",
"main": "lib/index.js",
"files": [
"lib/*.js"
],
"module": "lib/main.js",
"dependencies": {
"@digitalbazaar/ed25519-verification-key-2018": "^3.1.1",
"@digitalbazaar/jws-linked-data-signature": "^1.0.1",
"ed25519-signature-2018-context": "^1.0.1",
"esm": "^3.2.25",
"jsonld": "^5.2.0"
},
"devDependencies": {
"@transmute/jsonld-document-loader": "^0.2.0",
"chai": "^4.2.0",
"cross-env": "^7.0.2",
"did-context": "^3.0.0",
"eslint": "^7.6.0",
"eslint-config-digitalbazaar": "^2.6.1",
"eslint-plugin-jsdoc": "^32.3.0",
"jsonld-signatures": "^9.0.2",
"karma": "^6.3.2",
"karma-chai": "^0.1.0",
"karma-chrome-launcher": "^3.1.0",
"karma-mocha": "^2.0.1",
"karma-mocha-reporter": "^2.2.5",
"karma-sourcemap-loader": "^0.3.7",
"karma-webpack": "^5.0.0",
"mocha": "^8.1.1",
"mocha-lcov-reporter": "^1.3.0",
"nyc": "^15.1.0",
"webpack": "^5.31.2"
},
"nyc": {
"exclude": [
"test"
],
"reporter": [
"html",
"text-summary"
]
},
"browser": {
"buffer": false,
"crypto": false,
"util": false
},
"engines": {
"node": ">=12"
},
"keywords": [
"Decentralized",
"Linked Data"
],
"scripts": {
"test": "npm run lint && npm run test-node && npm run test-karma",
"test-karma": "karma start test/karma.conf.js",
"test-node": "cross-env NODE_ENV=test mocha -r esm --preserve-symlinks -t 30000 -R ${REPORTER:-spec} test/*.spec.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=lcovonly npm run test-node",
"coverage-report": "nyc report",
"lint": "eslint ."
}
}