forked from dirkx/base45-js
-
Notifications
You must be signed in to change notification settings - Fork 11
/
package.json
43 lines (43 loc) · 1007 Bytes
/
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
{
"name": "base45-js",
"description": "Encode/decode base45 data - including non-utf8 compliant data",
"version": "1.0.0",
"homepage": "https://github.com/ehn-digital-green-development/base45-js",
"author": {
"name": "Dirk-Willem van Gulik",
"email": "[email protected]"
},
"contributors": [
{
"name": "Steve Kellaway",
"email": "[email protected]"
}
],
"repository": {
"type": "git",
"url": "https://github.com/iehn-digital-green-development/base45-js"
},
"bugs": {
"url": "https://github.com/ehn-digital-green-development/base45-js/issues"
},
"licenses": [
{
"type": "Apache-2.0",
"url": "https://github.com/ehn-digital-green-development/base45/blob/master/LICENSE-ASF-2.0.txt"
}
],
"main": "lib/base45",
"engines": {
"node": ">= 0.6.0"
},
"scripts": {
"test": "mocha test"
},
"devDependencies": {
"mocha": "^8.3.2"
},
"keywords": [],
"vsTest": {
"testRoot": "./test"
}
}