forked from dapplink-labs/dapplink-secret
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
49 lines (49 loc) · 1.31 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
{
"name": "dapplink-secret",
"version": "1.0.5",
"description": "Shamir's threshold secret sharing scheme for JavaScript.",
"main": "secrets.js",
"directories": {
"example": "examples"
},
"dependencies": {},
"devDependencies": {
"grunt": "^1.0",
"grunt-check-modules": "^1.0.0",
"grunt-contrib-uglify": "^4.0",
"grunt-contrib-watch": "^1.1",
"grunt-jasmine-nodejs": "^1.6",
"jasmine": "^3.4.0",
"jquery": "^3.4",
"uglify-js": "^3.6.0"
},
"scripts": {
"build": "./node_modules/.bin/grunt uglify",
"test": "./node_modules/.bin/jasmine",
"test-browser": "open SpecRunner.html",
"test-browser-min": "npm run build && open SpecRunnerMinified.html",
"test-benchmark": "npm run build && open benchmark/benchmark.html",
"watch": "./node_modules/.bin/grunt watch"
},
"repository": {
"type": "git",
"url": "git+https://github.com/eniac-x-labs/node-secret.git"
},
"keywords": [
"secret",
"sharing",
"shamir",
"cryptography",
"split"
],
"author": "shijiang.guo",
"contributors": [
"Guoshijian <[email protected]>"
],
"license": "ISC",
"bugs": {
"url": "https://github.com/eniac-x-labs/node-secret/issues"
},
"homepage": "https://github.com/eniac-x-labs/node-secret#readme",
"typings": "./secrets.js.d.ts"
}