-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathpackage.json
99 lines (99 loc) · 2.84 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
{
"name": "rdf-canonize",
"version": "4.0.2-0",
"description": "An implementation of the RDF Dataset Canonicalization algorithm in JavaScript",
"homepage": "https://github.com/digitalbazaar/rdf-canonize",
"author": {
"name": "Digital Bazaar, Inc.",
"email": "support@digitalbazaar.com",
"url": "https://digitalbazaar.com/"
},
"contributors": [
"Dave Longley <dlongley@digitalbazaar.com>"
],
"repository": {
"type": "git",
"url": "https://github.com/digitalbazaar/rdf-canonize"
},
"bugs": {
"url": "https://github.com/digitalbazaar/rdf-canonize/issues",
"email": "support@digitalbazaar.com"
},
"license": "BSD-3-Clause",
"main": "index.js",
"files": [
"index.js",
"lib/*.js"
],
"dependencies": {
"setimmediate": "^1.0.5"
},
"devDependencies": {
"benchmark": "^2.1.4",
"browserify": "^17.0.0",
"chai": "^4.3.10",
"envify": "^4.1.0",
"eslint": "^8.53.0",
"eslint-config-digitalbazaar": "^5.0.1",
"eslint-plugin-jsdoc": "^46.9.0",
"esmify": "^2.1.1",
"fs-extra": "^11.1.1",
"join-path-js": "^0.0.0",
"karma": "^6.4.2",
"karma-babel-preprocessor": "^8.0.2",
"karma-browserify": "^8.1.0",
"karma-chrome-launcher": "^3.2.0",
"karma-mocha": "^2.0.1",
"karma-mocha-reporter": "^2.2.5",
"karma-server-side": "github:fargies/karma-server-side#9397553473fcbc2aaabb7dc9f59e96f9ff26791c",
"karma-sourcemap-loader": "^0.4.0",
"karma-webpack": "^5.0.0",
"klona": "^2.0.6",
"mocha": "^10.2.0",
"mocha-lcov-reporter": "^1.3.0",
"nsolid": "0.0.0",
"nyc": "^15.1.0",
"webpack": "^5.89.0"
},
"engines": {
"node": ">=18"
},
"keywords": [
"JSON",
"JSON-LD",
"Linked Data",
"RDF",
"RDF Dataset Canonicalization",
"Semantic Web",
"jsonld",
"rdf-canon"
],
"scripts": {
"fetch-test-suite": "if [ ! -e test-suites/rdf-canon ]; then git clone --depth 1 https://github.com/w3c/rdf-canon.git test-suites/rdf-canon; fi",
"test": "npm run test-node",
"test-node": "NODE_ENV=test mocha --delay -A -R spec --check-leaks test/test-node.js",
"test-karma": "NODE_ENV=test karma start",
"benchmark": "node benchmark/benchmark.js",
"coverage": "NODE_ENV=test nyc npm test",
"coverage-ci": "NODE_ENV=test nyc --reporter=lcovonly --reporter=text-summary --reporter=text npm run test",
"coverage-report": "nyc report",
"lint": "eslint ."
},
"browser": {
"./lib/MessageDigest.js": "./lib/MessageDigest-webcrypto.js",
"./lib/platform.js": "./lib/platform-browser.js",
"rdf-canonize-native": false
},
"react-native": {
"./lib/MessageDigest.js": "./lib/MessageDigest-webcrypto.js",
"./lib/platform.js": "./lib/platform-browser.js",
"rdf-canonize-native": false
},
"nyc": {
"reporter": [
"lcov",
"text-summary",
"text"
]
}
}