-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
39 lines (39 loc) · 982 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": "@blockchainhub/ican",
"version": "0.4.1",
"description": "A JavaScript library to validate, format, and convert International Crypto Account Numbers (ICAN) and Basic Crypto Account Numbers (BCAN).",
"keywords": [
"ican",
"bcan",
"international",
"crypto",
"account",
"number",
"crytography",
"format",
"convert"
],
"devDependencies": {
"standard": "^17.1.0",
"tape": "^5.7.5"
},
"scripts": {
"build": "cp ican.js src/index.js && standard --fix 'src/index.js'",
"gitdiff": "npm run build && git diff --exit-code",
"standard": "standard 'src/index.js'",
"test": "npm run unit && npm run standard 'src/index.js'",
"unit": "tape test/*.js"
},
"files": [
"src"
],
"main": "src/index.js",
"types": "src/index.d.ts",
"repository": "https://github.com/bchainhub/ican.js",
"author": "Blockchain Hub",
"license": "CORE",
"private": false,
"engines": {
"node": ">= 8"
}
}