-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
39 lines (39 loc) · 1 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
{
"name": "@blockchainhub/ican",
"version": "0.4.2",
"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.2",
"tape": "^5.9.0"
},
"scripts": {
"build": "mkdir -p dist && cp ican.js dist/index.js && cp ican.d.ts dist/index.d.ts",
"gitdiff": "npm run build && git diff --exit-code",
"test": "npm run unit && npm run standard",
"unit": "npm run build && tape test/*.js",
"standard": "npm run build && npx standard 'dist/**/*.js'"
},
"files": [
"dist"
],
"main": "dist/index.js",
"types": "dist/index.d.ts",
"repository": "https://github.com/bchainhub/ican.js",
"author": "Blockchain Hub",
"license": "CORE",
"private": false,
"engines": {
"node": ">= 8"
}
}