-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
50 lines (50 loc) · 1.52 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
{
"name": "@polkajs/thresh-sig",
"version": "1.0.7",
"description": "Threshold signatures using pairing based cryptography and elliptic curves",
"main": "lib/threshsig.js",
"scripts": {
"lint+build+test": "yarn run lint && yarn run build && yarn 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 test/**/*.js && echo 'successfully completed tests'",
"compile": "node-gyp rebuild",
"start": "node main.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/PolkaJS/thresh-sig.git"
},
"author": "Craig OConnor",
"license": "ISC",
"bugs": {
"url": "https://github.com/PolkaJS/thresh-sig/issues"
},
"keywords": [
"threshold",
"signature",
"cryptography",
"pairing",
"elliptic",
"curve"
],
"homepage": "https://github.com/PolkaJS/thresh-sig#readme",
"devDependencies": {
"babel-cli": "^6.24.1",
"babel-eslint": "^8.0.0",
"babel-plugin-add-module-exports": "^0.2.1",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-plugin-transform-es2015-modules-commonjs": "^6.24.1",
"babel-preset-es2015": "^6.24.1",
"babel-preset-flow": "^6.23.0",
"eslint": "^4.0.0",
"flow-bin": "^0.54.0",
"random-words": "0.0.1",
"rlp": "^2.0.0",
"tape": "^4.6.3"
},
"dependencies": {
"extend": "^3.0.1"
}
}