forked from digitalbazaar/base58-universal
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
91 lines (91 loc) · 2.43 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
{
"name": "@procivis/base58-universal",
"version": "2.0.1-0",
"description": "Encode/decode using \"The Base58 Encoding Scheme\".",
"homepage": "https://github.com/digitalbazaar/base58-universal",
"author": {
"name": "Digital Bazaar, Inc.",
"email": "support@digitalbazaar.com",
"url": "https://digitalbazaar.com/"
},
"repository": {
"type": "git",
"url": "https://github.com/procivis/base58-universal"
},
"license": "BSD-3-Clause",
"files": [
"dist",
"lib",
"rollup.config.js",
"build-dist.sh",
"README.md",
"LICENSE"
],
"main": "dist/index.js",
"browser": "dist/index.js",
"module": "dist/esm/index.js",
"exports": {
".": {
"require": "./dist/index.js",
"import": "./dist/esm/index.js"
},
"./package.json": "./package.json"
},
"dependencies": {},
"devDependencies": {
"@babel/core": "^7.14.0",
"@babel/plugin-transform-runtime": "^7.8.3",
"@babel/preset-env": "^7.14.1",
"@babel/runtime": "^7.8.3",
"babel-loader": "^8.0.6",
"c8": "^7.11.2",
"chai": "^4.3.6",
"chai-bytes": "^0.1.2",
"cross-env": "^7.0.3",
"eslint": "^8.15.0",
"eslint-config-digitalbazaar": "^3.0.0",
"eslint-plugin-jsdoc": "^39.2.9",
"eslint-plugin-unicorn": "^42.0.0",
"karma": "^6.3.20",
"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.0.0",
"mocha-lcov-reporter": "^1.3.0",
"nyc": "^15.0.0",
"rimraf": "^3.0.2",
"rollup": "^2.47.0",
"webpack": "^5.72.1"
},
"c8": {
"exclude": [
"tests"
],
"reporter": [
"html",
"text-summary"
]
},
"engines": {
"node": ">=14"
},
"scripts": {
"rollup": "rollup -c rollup.config.js",
"build": "npm run clear && npm run rollup && ./build-dist.sh",
"clear": "rimraf dist && mkdir dist",
"coverage": "cross-env NODE_ENV=test nyc --reporter=lcov --reporter=text-summary npm run test-node",
"coverage-report": "nyc report",
"prepare": "npm run build",
"prepack": "npm run build",
"test": "npm run test-node",
"rebuild": "npm run clear && npm run build",
"test-node": "cross-env NODE_ENV=test mocha --preserve-symlinks -r esm -t 30000 -A -R ${REPORTER:-spec} test/*.spec.js",
"test-karma": "karma start",
"lint": "eslint ."
},
"keywords": [
"base58"
]
}