-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
100 lines (100 loc) · 2.76 KB
/
Copy pathpackage.json
File metadata and controls
100 lines (100 loc) · 2.76 KB
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
{
"name": "@digitalbazaar/cborld",
"version": "5.0.1-0",
"description": "A CBOR-LD encoder/decoder for Javascript.",
"license": "BSD-3-Clause",
"author": {
"name": "Digital Bazaar, Inc.",
"email": "support@digitalbazaar.com",
"url": "https://digitalbazaar.com/"
},
"homepage": "https://github.com/digitalbazaar/cborld",
"repository": {
"type": "git",
"url": "https://github.com/digitalbazaar/cborld"
},
"bugs": {
"url": "https://github.com/digitalbazaar/cborld/issues"
},
"keywords": [
"json-ld",
"cbor",
"linked data",
"compression"
],
"type": "module",
"main": "dist/main.js",
"module": "main.js",
"browser": {
"index.js": "main.js",
"./lib/util.js": "./lib/util-browser.js"
},
"engines": {
"node": ">=18"
},
"scripts": {
"build": "rm -rf dist/ && rollup --config rollup.config.js",
"test": "npm run test-node",
"test-node": "cross-env NODE_ENV=test mocha --preserve-symlinks -t 30000 -A -R ${REPORTER:-spec} tests/*.spec.js",
"test-karma": "karma start karma.conf.cjs",
"test-watch": "cross-env NODE_ENV=test mocha --watch --preserve-symlinks -t 30000 -A -R ${REPORTER:-spec} tests/*.spec.js",
"coverage": "cross-env NODE_ENV=test c8 npm run test-node",
"coverage-ci": "cross-env NODE_ENV=test c8 --reporter=lcovonly --reporter=text-summary --reporter=text npm run test-node",
"coverage-report": "c8 report",
"lint": "eslint ./lib ./tests"
},
"files": [
"lib/**/*.js",
"main.js",
"dist/main.js",
"dist/main.js.map",
"index.d.ts"
],
"dependencies": {
"base58-universal": "^2.0.0",
"cborg": "^1.9.4",
"js-base64": "^3.7.2",
"uuid": "^8.3.2"
},
"devDependencies": {
"@rollup/plugin-node-resolve": "^13.3.0",
"@types/node": "^22.10.0",
"c8": "^8.0.1",
"chai": "^4.3.10",
"chai-as-promised": "7.1.1",
"chai-bytes": "^0.1.2",
"cross-env": "^7.0.3",
"eslint": "^8.51.0",
"eslint-config-digitalbazaar": "^3.0.0",
"eslint-plugin-jsdoc": "^49.0.0",
"eslint-plugin-unicorn": "^42.0.0",
"karma": "^6.4.4",
"karma-chai": "^0.1.0",
"karma-chrome-launcher": "^3.1.1",
"karma-mocha": "^2.0.1",
"karma-mocha-reporter": "^2.2.5",
"karma-sourcemap-loader": "^0.3.8",
"karma-webpack": "^5.0.0",
"mocha": "^10.8.2",
"mocha-lcov-reporter": "^1.3.0",
"nyc": "^15.1.0",
"rollup": "2.80.0",
"webpack": "^5.99.6"
},
"c8": {
"reporter": [
"lcov",
"text-summary",
"text"
]
},
"resolutions": {
"**/**/serialize-javascript": "7.0.5",
"@istanbuljs/load-nyc-config/**/**/js-yaml": "3.14.2",
"chai/loupe/get-func-name": "2.0.2",
"karma/ua-parser-js": "0.7.33",
"nyc/**/json5": "2.2.2",
"semver": "7.5.4",
"qs": "6.14.2"
}
}