-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
48 lines (48 loc) · 1.41 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
{
"name": "@tangle-js/tangle.js",
"version": "0.9.0",
"description": "Tangle.js tools and libraries. MonoRepo",
"keywords": [
"tangle",
"libraries",
"streams",
"identity",
"w3c",
"linked",
"data",
"proofs"
],
"authors": [
"José M. Cantera <[email protected]>"
],
"repository": {
"type": "git",
"url": "https://github.com/iotaledger/tangle.js.git"
},
"license": "Apache-2.0",
"engines": {
"node": ">=16",
"npm": ">=7"
},
"scripts": {
"test": "npm run test --workspaces",
"build": "npm run build --workspaces",
"build-anchors": "npm run build --workspace='libs/anchors'",
"package-anchors": "npm run package --workspace='libs/anchors'",
"build-tcli": "npm run build --workspace='tools/tangle-cli'",
"build-esm": "npm run build --workspace='tools/esm-modules'",
"package-esm": "npm run package --workspace='tools/esm-modules'",
"build-proofs": "npm run build --workspace='libs/ld-proofs'",
"test-anchors": "npm test --workspace='libs/anchors'",
"test-proofs": "npm test --workspace='libs/ld-proofs'"
},
"workspaces": [
"libs/anchors",
"libs/ld-proofs",
"tools/tangle-cli",
"tools/esm-modules"
],
"dependencies": {
"@types/estree": "^0.0.51"
}
}