forked from qntm/base32768
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
45 lines (45 loc) · 914 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
44
45
{
"name": "base32768",
"version": "2.0.1",
"description": "Binary-to-text encoding highly optimised for UTF-16",
"homepage": "https://github.com/qntm/base32768",
"repository": {
"type": "git",
"url": "git://github.com/qntm/base32768.git"
},
"module": "dist/es6/base32768.js",
"main": "dist/cjs/base32768.js",
"keywords": [
"base64",
"base32768",
"encoding",
"unicode",
"text",
"decoding",
"efficient"
],
"scripts": {
"jest": "jest",
"rollup": "rollup",
"standard": "standard",
"test": "standard && jest"
},
"dependencies": [],
"author": "qntm",
"license": "MIT",
"devDependencies": {
"@babel/preset-env": "^7.7.7",
"glob": "^7.1.6",
"jest": "^24.9.0",
"rollup": "^1.29.0",
"standard": "^14.3.1"
},
"babel": {
"presets": [
"@babel/preset-env"
]
},
"standard": {
"ignore": "dist"
}
}