-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
37 lines (37 loc) · 1.15 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
{
"name": "@polkajs/elliptic-curve-signature-algo",
"version": "1.3.2",
"description": "Implementation of bitcoin's signature algorithm in Javascript for educational purposes",
"main": "lib/index.js",
"scripts": {
"lint+build+test": "npm run lint && npm run build && npm run test",
"lint": "echo linting... && eslint ./src/**/*.js && echo 'successfully linted'",
"build": "echo building... && babel src/ -d lib/ && echo 'successfully built'",
"prepublish": "yarn run build",
"test": "echo running server tests... && tape tests/**/*.js && echo 'successfully completed tests'"
},
"author": "Craig OConnor",
"license": "ISC",
"devDependencies": {
"babel-cli": "^6.24.1",
"babel-eslint": "^8.0.0",
"babel-preset-flow": "^6.23.0",
"eslint": "^4.0.0",
"flow-bin": "^0.53.0",
"keccak": "^1.3.0",
"keccakjs": "^0.2.1",
"secp256k1": "^3.3.0",
"sha3": "^1.2.0",
"tape": "^4.6.3"
},
"dependencies": {
"base58check": "^2.0.0",
"big-integer": "^1.6.23",
"bs58": "^4.0.1",
"bs58check": "^2.0.2",
"csprng": "^0.1.2",
"mod-op": "^1.0.0",
"ripemd160": "^2.0.1",
"sha3": "^1.2.0"
}
}