generated from jsynowiec/node-typescript-boilerplate
-
-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
78 lines (78 loc) · 2.14 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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
{
"name": "@keystonehq/bc-ur-registry",
"version": "0.7.0",
"description": "A JS implementation of Uniform Resources(UR) Registry specification from Blockchain Commons",
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "https://github.com/KeystoneHQ/ur-registry"
},
"main": "dist/index.js",
"types": "dist/index.d.ts",
"directories": {
"lib": "src",
"test": "__tests__"
},
"files": [
"src",
"dist"
],
"devDependencies": {
"@babel/core": "^7.14.3",
"@babel/preset-env": "^7.6.3",
"@babel/preset-typescript": "^7.6.0",
"@types/bip39": "^3.0.0",
"@types/bs58check": "^2.1.0",
"@types/jest": "~26.0.23",
"@types/node": "~14.14.44",
"@types/uuid": "^8.3.1",
"@typescript-eslint/eslint-plugin": "~4.33.0",
"@typescript-eslint/parser": "~4.33.0",
"babel-loader": "^8.2.2",
"bip32": "^2.0.6",
"bip39": "^3.0.4",
"bitcoinjs-lib": "^5.2.0",
"buffer": "^6.0.3",
"eslint": "~7.26.0",
"eslint-config-prettier": "~8.3.0",
"eslint-plugin-jest": "~24.3.6",
"jest": "~26.6.3",
"node-polyfill-webpack-plugin": "^1.1.2",
"prettier": "~2.3.0",
"process": "0.11.10",
"rimraf": "~3.0.2",
"stream-browserify": "^3.0.0",
"ts-jest": "~26.5.6",
"tsutils": "~3.21.0",
"typescript": "^4.5.4",
"uuid": "^8.3.2",
"webpack": "5.74.0",
"webpack-cli": "4.10.0"
},
"babel": {
"presets": [
"@babel/preset-env",
"@babel/preset-typescript"
]
},
"scripts": {
"start": "node dist/index.js",
"clean": "rimraf coverage build tmp dist",
"build": "tsc -p tsconfig.json && cp src/lib/cbor-sync.d.ts dist/lib",
"build:watch": "tsc -w -p tsconfig.json",
"lint": "eslint . --ext .ts,.tsx",
"test": "jest --coverage",
"test:watch": "jest --watch",
"build:purescript": "webpack --config webpack.config.js",
"build:release": "yarn run clean && yarn run build && yarn run build:purescript"
},
"author": "Soralit <[email protected]>",
"license": "Apache-2.0",
"dependencies": {
"@ngraveio/bc-ur": "^1.1.5",
"bs58check": "^2.1.2",
"tslib": "^2.3.0"
}
}