forked from digitalbazaar/rdf-canonize
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
67 lines (67 loc) · 1.93 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
{
"name": "rdf-canonize",
"version": "3.3.1-0",
"description": "An implementation of the RDF Dataset Normalization 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",
"chai": "^4.2.0",
"delay": "^5.0.0",
"eslint": "^7.23.0",
"eslint-config-digitalbazaar": "^2.6.1",
"mocha": "^8.3.2",
"mocha-lcov-reporter": "^1.3.0",
"nsolid": "0.0.0",
"nyc": "^15.1.0"
},
"engines": {
"node": ">=12"
},
"keywords": [
"JSON",
"Linked Data",
"JSON-LD",
"RDF",
"Semantic Web",
"jsonld"
],
"scripts": {
"fetch-test-suite": "if [ ! -e test-suites/rdf-dataset-canonicalization ]; then git clone --depth 1 https://github.com/w3c-ccg/rdf-dataset-canonicalization.git test-suites/rdf-dataset-canonicalization; fi",
"test": "npm run test-node",
"test-node": "NODE_ENV=test mocha -R spec --check-leaks",
"benchmark": "node benchmark/benchmark.js",
"coverage": "NODE_ENV=test nyc --reporter=lcov --reporter=text-summary npm test",
"coverage-ci": "NODE_ENV=test nyc --reporter=lcovonly npm run test",
"coverage-report": "nyc report",
"lint": "eslint '*.js' 'lib/*.js' 'test/*.js' 'benchmark/*.js'"
},
"browser": {
"./lib/MessageDigest.js": "./lib/MessageDigest-browser.js",
"rdf-canonize-native": false
}
}