forked from multiparty/umbral
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
65 lines (65 loc) · 1.66 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
{
"name": "umbral",
"version": "1.0.7",
"main": "dist/umbral.js",
"types": "dist/umbral.d.ts",
"files": [
"/dist"
],
"scripts": {
"build": "tsc",
"test": "tslint -c tslint.json --project tsconfig.json && nyc mocha --timeout 200000 -r ts-node/register -r source-map-support/register test/*",
"test-build": "nyc mocha --timeout 200000 -r ts-node/register -r source-map-support/register test/*",
"coveralls": "npm test && nyc report --reporter=text-lcov | ./node_modules/coveralls/bin/coveralls.js"
},
"nyc": {
"extension": [
".ts"
],
"exclude": [
"**/*.d.ts",
"**/*.js",
"**/*.spec.ts"
]
},
"dependencies": {
"big-integer": "^1.6.30",
"encoding": "^0.1.12",
"text-encoding": "^0.6.4",
"uuid": "^3.3.2"
},
"devDependencies": {
"@types/chai": "^4.1.3",
"@types/mocha": "^5.2.1",
"@types/node": "^10.3.2",
"chai": "^4.1.2",
"coveralls": "^3.0.2",
"jsdoc": "^3.5.5",
"libsodium-wrappers-sumo": "^0.7.3",
"mocha": "^5.2.0",
"nyc": "^12.0.2",
"oprf": "^1.0.0",
"source-map-support": "^0.5.8",
"ts-node": "^6.1.0",
"tslint": "^5.11.0",
"typedoc": "^0.11.1",
"typescript": "^2.9.2"
},
"peerDependencies": {
"libsodium-wrappers-sumo": "^0.7.3"
},
"directories": {
"test": "test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/multiparty/umbral.git"
},
"author": "Boston University - Software & Application Innovation Lab",
"license": "MIT",
"bugs": {
"url": "https://github.com/multiparty/umbral/issues"
},
"homepage": "https://github.com/multiparty/umbral#readme",
"description": ""
}