-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
70 lines (70 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
68
69
70
{
"name": "@digitalbazaar/base45",
"version": "1.0.1-0",
"description": "Encoder/decoder for RFC 9285 \"The Base45 Data Encoding\".",
"homepage": "https://github.com/digitalbazaar/base45",
"author": {
"name": "Digital Bazaar, Inc.",
"email": "support@digitalbazaar.com",
"url": "https://digitalbazaar.com/"
},
"repository": {
"type": "git",
"url": "https://github.com/digitalbazaar/base45"
},
"bugs": {
"url": "https://github.com/digitalbazaar/base45/issues",
"email": "support@digitalbazaar.com"
},
"license": "BSD-3-Clause",
"type": "module",
"exports": "./lib/index.js",
"files": [
"lib/**/*.js"
],
"devDependencies": {
"c8": "^9.1.0",
"chai": "^4.4.1",
"chai-bytes": "^0.1.2",
"cross-env": "^7.0.3",
"eslint": "^8.20.0",
"eslint-config-digitalbazaar": "^5.2.0",
"eslint-plugin-jsdoc": "^48.2.8",
"eslint-plugin-unicorn": "^53.0.0",
"karma": "^6.4.3",
"karma-chrome-launcher": "^3.2.0",
"karma-mocha": "^2.0.1",
"karma-mocha-reporter": "^2.2.5",
"karma-sourcemap-loader": "^0.4.0",
"karma-webpack": "^5.0.1",
"mocha": "^10.4.0",
"mocha-lcov-reporter": "^1.3.0",
"webpack": "^5.91.0"
},
"c8": {
"exclude": [
"tests"
],
"reporter": [
"html",
"text-summary"
]
},
"engines": {
"node": ">=18"
},
"scripts": {
"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",
"coverage": "cross-env NODE_ENV=test c8 --reporter=lcov --reporter=text-summary --reporter=text 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 --ext .cjs,.js ."
},
"keywords": [
"base45",
"RFC9285",
"RFC 9285"
]
}