-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
28 lines (28 loc) · 980 Bytes
/
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
{
"name": "alice-s-ring",
"version": "1.0.0",
"description": "A set of libraries for ring signatures",
"private": true,
"workspaces": [
"packages/*"
],
"scripts": {
"allow-scripts": "yarn workspace root allow-scripts",
"test": "cd packages/ring-sig-utils && npm run build && cd ../.. && yarn workspaces run test ",
"build": "cd packages/ring-sig-utils && npm run build && cd ../.. && yarn workspaces run test ",
"clean": "npm run clean --workspaces && rimraf ./node_modules"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Cypher-Laboratory/Alice-s-Ring.git"
},
"author": "Elli610 <nathan@cypherlab.org> && LeJamon <thomas@cypherlab.org> && maximedgr <maxime@cypherlab.org>",
"license": "MIT",
"bugs": {
"url": "https://github.com/Cypher-Laboratory/Alice-s-Ring/issues"
},
"homepage": "https://github.com/Cypher-Laboratory/Alice-s-Ring#readme",
"devDependencies": {
"typescript": "^5.6.2"
}
}