forked from digitalbazaar/jsonld-signatures
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
98 lines (98 loc) · 2.8 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
{
"name": "@sphereon/rn-jsonld-signatures",
"version": "9.3.1-0",
"description": "An implementation of the Linked Data Signatures specifications for JSON-LD in Typescript supporting React Native.",
"homepage": "https://github.com/Sphereon-Opensource/rn-jsonld-signatures",
"author": {
"name": "React native port by Sphereon, forked from Digital Bazaar, Inc.",
"email": "[email protected]",
"url": "https://sphereon.com, https://digitalbazaar.com/"
},
"contributors": [
"Dave Longley <[email protected]>",
"Manu Sporny <[email protected]>",
"David I. Lehn <[email protected]>",
"Dmitri Zagidulin <[email protected]>",
"Sphereon <[email protected]>"
],
"repository": {
"type": "git",
"url": "https://github.com/Sphereon-Opensource/rn-jsonld-signatures"
},
"bugs": {
"url": "https://github.com/Sphereon-Opensource/rn-jsonld-signatures/issues",
"email": "[email protected]"
},
"license": "BSD-3-Clause",
"main": "lib/jsonld-signatures.js",
"files": [
"lib/*.js",
"lib/**/*.js"
],
"private": false,
"dependencies": {
"crypto-ld": "^3.7.0",
"jsonld": "^5.0.0",
"node-forge": "^0.9.1",
"@sphereon/w3c-security-contexts": "0.2.0",
"sodium-javascript": "^0.6.1",
"serialize-error": "^8.0.1"
},
"devDependencies": {
"chai": "^4.3.3",
"cross-env": "^7.0.3",
"eslint": "^7.21.0",
"eslint-config-digitalbazaar": "^2.6.1",
"eslint-plugin-jsdoc": "^32.2.0",
"karma": "^6.1.1",
"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.8",
"karma-webpack": "^5.0.0",
"mocha": "^8.3.1",
"mocha-lcov-reporter": "^1.3.0",
"nyc": "^15.1.0",
"webpack": "^5.24.3"
},
"engines": {
"node": ">=12"
},
"keywords": [
"JSON",
"Linked Data",
"JSON-LD",
"RDF",
"Semantic Web",
"jsonld",
"digital signatures"
],
"scripts": {
"test": "npm run lint && npm run test-node && npm run test-karma",
"test-node": "cross-env NODE_ENV=test mocha --preserve-symlinks -t 10000 test/*.spec.js",
"test-karma": "karma start karma.conf.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 ."
},
"nyc": {
"exclude": [
"test"
]
},
"browser": {
"crypto": false,
"./lib/sha256digest.js": "./lib/sha256digest-browser.js"
},
"resolutions": {
"sodium-native": "./node_modules/sodium-javascript"
},
"bundledDependencies": [
"crypto-ld",
"jsonld",
"node-forge",
"sodium-javascript"
]
}