-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpackage.json
47 lines (47 loc) · 1.08 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
{
"name": "rabinsig",
"version": "4.2.1",
"description": "A JavaScript Rabin Signature Library.",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"scripts": {
"build": "rimraf dist && tsc",
"test": "npm run build && mocha",
"example": "npm run build && node dist/example.js",
"prepublishOnly": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/scrypt-sv/rabin.git"
},
"keywords": [
"rabin",
"signature",
"signatures",
"publickey",
"cryptography",
"bitcoin"
],
"author": "Xiaohui Liu & Freddie Honohan",
"license": "SEE LICENSE IN LICENSE",
"bugs": {
"url": "https://github.com/scrypt-sv/rabin/issues"
},
"homepage": "https://github.com/scrypt-sv/rabin#readme",
"dependencies": {
"bigint-buffer": "^1.1.5"
},
"files": [
"./dist"
],
"devDependencies": {
"@types/chai": "^4.3.5",
"@types/mocha": "^10.0.1",
"bsv": "^1.5.4",
"chai": "^4.2.0",
"mocha": "^8.2.1",
"rimraf": "^5.0.1",
"ts-node": "^10.9.1",
"typescript": "^5.1.6"
}
}