-
Notifications
You must be signed in to change notification settings - Fork 13
/
package.json
55 lines (55 loc) · 1.38 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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
{
"name": "@ngraveio/bc-ur",
"version": "1.1.13",
"author": "Antonis Poulakis <[email protected]>",
"description": "A JS implementation of the Uniform Resources (UR) specification from Blockchain Commons",
"license": "MIT",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"directories": {
"lib": "src",
"test": "tests"
},
"files": [
"src",
"dist"
],
"scripts": {
"clean": "rimraf dist && rimraf tsconfig.tsbuildinfo",
"build": "yarn clean && yarn compile",
"compile": "tsc -p tsconfig.json -outDir ./dist",
"test": "jest",
"lint": "eslint \"./src/**/*.{ts,tsx}\" --max-warnings=0"
},
"dependencies": {
"@keystonehq/alias-sampling": "^0.1.1",
"assert": "^2.0.0",
"bignumber.js": "^9.0.1",
"cbor-sync": "^1.0.4",
"crc": "^3.8.0",
"jsbi": "^3.1.5",
"sha.js": "^2.4.11"
},
"devDependencies": {
"@types/crc": "^3.4.0",
"@types/jest": "^26.0.23",
"@types/node": "^14.14.25",
"@types/sha.js": "^2.4.0",
"jest": "^26.6.3",
"rimraf": "^3.0.2",
"semantic-release": "^24.1.2",
"ts-jest": "^26.5.1",
"typescript": "^4.1.5"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ngraveio/bc-ur.git"
},
"keywords": [
"bc-ur"
],
"bugs": {
"url": "https://github.com/ngraveio/bc-ur/issues"
},
"homepage": "https://github.com/ngraveio/bc-ur#readme"
}