-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
39 lines (39 loc) · 846 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
{
"name": "node-base91",
"description": "basE91 codec in pure JavaScript implementation.",
"version": "0.3.4",
"author": "Equim <sayaka@ekyu.moe>",
"license": "BSD-3-Clause",
"files": [
"index.js"
],
"scripts": {
"lint": "eslint --fix .",
"test": "jest -b --coverage",
"benchmark": "node benchmark"
},
"repository": {
"type": "git",
"url": "https://github.com/Equim-chan/base91.git"
},
"keywords": [
"base91",
"encoding",
"binary-to-text"
],
"bugs": {
"url": "https://github.com/Equim-chan/base91/issues"
},
"homepage": "https://github.com/Equim-chan/base91#readme",
"devDependencies": {
"benchmark": "^2.1.4",
"eslint": "^3.19.0",
"eslint-config-google": "^0.7.1",
"jest": "^20.0.4"
},
"jest": {
"testMatch": [
"**/test/**/*.js"
]
}
}