-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 997 Bytes
/
package.json
File metadata and controls
36 lines (36 loc) · 997 Bytes
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
{
"name": "psa-lib",
"version": "2.1.3",
"description": "A library for private selective aggregation",
"main": "src/index",
"scripts": {
"build": "babel src/*.mjs **/*.mjs --out-dir ./src",
"test": "jest ",
"format": "prettier --write .",
"docs": "documentation readme src/index.mjs -f md --section='API docs' --shallow"
},
"author": {
"name": "Alexander Grass",
"email": "alexanderwaltergrass@gmail.com"
},
"license": "MIT",
"homepage": "https://github.com/Safe-DEED/PSA",
"repository": {
"type": "git",
"url": "https://github.com/Safe-DEED/PSA"
},
"dependencies": {
"node-seal": "^4.5.2"
},
"devDependencies": {
"@babel/cli": "^7.12.8",
"@babel/core": "^7.12.9",
"@babel/plugin-transform-modules-commonjs": "^7.12.1",
"@babel/preset-env": "^7.12.1",
"babel-jest": "^26.6.0",
"babel-plugin-add-module-exports": "^1.0.4",
"documentation": "^13.1.1",
"jest": "^26.6.0",
"prettier": "2.2.1"
}
}