-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
66 lines (66 loc) · 1.42 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
{
"name": "@hicaru/ripemd160.js",
"version": "0.0.9",
"description": "A pure javascript implementation of ripemd160 hash function.",
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"repository": "git@github.com:bearby-wallet/ripemd160-js.git",
"author": "Rinat <lich666black@gmail.com>",
"license": "MIT",
"types": "dist/index.d.ts",
"module": "dist/index.js",
"files": [
"dist/*",
"lib/*",
"tests/*",
"index.js",
"index.ts"
],
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"default": "./dist/index.js"
}
},
"browser": {
"crypto": false
},
"private": false,
"keywords": [
"string",
"strings",
"ripemd160",
"ripe160",
"bitcoin",
"bytes",
"cryptography"
],
"devDependencies": {
"@rollup/plugin-node-resolve": "^13.3.0",
"@rollup/plugin-typescript": "^8.4.0",
"@types/jest": "^28.1.8",
"jest": "^28.1.3",
"ripemd160": "^2.0.2",
"rollup": "^2.78.1",
"rollup-plugin-terser": "^7.0.2",
"ts-jest": "^28.0.8",
"tslib": "^2.4.0",
"typescript": "^4.7.4"
},
"scripts": {
"build": "npm run test && rollup -c",
"dev": "rollup -c -w",
"test": "jest"
},
"jest": {
"transform": {
".(ts|tsx)": "ts-jest"
},
"testRegex": "(/__tests__/.*|\\.(test|spec))\\.(ts|tsx|js)$",
"moduleFileExtensions": [
"ts",
"js"
]
}
}