Skip to content

Commit 64cbed4

Browse files
committed
Make top level package private.
1 parent 3980240 commit 64cbed4

File tree

1 file changed

+37
-36
lines changed

1 file changed

+37
-36
lines changed

package.json

Lines changed: 37 additions & 36 deletions
Original file line numberDiff line numberDiff line change
@@ -1,38 +1,39 @@
11
{
2-
"name": "network-contracts",
3-
"version": "0.0.4",
4-
"description": "Network Contracts with chainlink oracle and The Graph",
5-
"author": "Streamr Network AG",
6-
"license": "ISC",
7-
"workspaces": [
8-
"./packages/*"
9-
],
10-
"scripts": {
11-
"clean": "npm run clean --workspaces --if-present",
12-
"build": "npm run build --workspaces",
13-
"lint": "npm run lint --workspaces",
14-
"test": "npm run test --workspaces --if-present",
15-
"graph1_build": "npm run deployLocalWithExport -w=smartcontracts",
16-
"graph2_copyInfo": "./scripts/copyAbis.sh && ./scripts/generateYaml.sh",
17-
"graph3_build": "npm run doAll --workspace=streamregistry-thegraph-subgraph",
18-
"graph": "npm run graph1_build && npm run graph2_copyInfo && npm run graph3_build",
19-
"e2etest": "npm run e2etest --workspace=smartcontracts",
20-
"migration-build": "npm run build -w=brubeck-migration-script",
21-
"migration-run": "npm run migration -w=brubeck-migration-script"
22-
},
23-
"devDependencies": {
24-
"@types/chai": "4.3.0",
25-
"@types/mocha": "9.1.0",
26-
"@types/node": "16.11.25",
27-
"eslint": "7.25.0",
28-
"chai": "4.3.6",
29-
"mocha": "9.2.0",
30-
"eslint-config-streamr-ts": "4.0.1",
31-
"eslint-plugin-promise": "5.2.0",
32-
"@typescript-eslint/eslint-plugin": "4.33.0",
33-
"@typescript-eslint/parser": "4.33.0",
34-
"eslint-plugin-chai-friendly": "0.6.0",
35-
"ts-node": "10.4.0",
36-
"typescript": "4.2.4"
37-
}
2+
"name": "network-contracts",
3+
"version": "0.0.4",
4+
"description": "Network Contracts with chainlink oracle and The Graph",
5+
"author": "Streamr Network AG",
6+
"private": true,
7+
"license": "ISC",
8+
"workspaces": [
9+
"./packages/*"
10+
],
11+
"scripts": {
12+
"clean": "npm run clean --workspaces --if-present",
13+
"build": "npm run build --workspaces",
14+
"lint": "npm run lint --workspaces",
15+
"test": "npm run test --workspaces --if-present",
16+
"graph1_build": "npm run deployLocalWithExport -w=smartcontracts",
17+
"graph2_copyInfo": "./scripts/copyAbis.sh && ./scripts/generateYaml.sh",
18+
"graph3_build": "npm run doAll --workspace=streamregistry-thegraph-subgraph",
19+
"graph": "npm run graph1_build && npm run graph2_copyInfo && npm run graph3_build",
20+
"e2etest": "npm run e2etest --workspace=smartcontracts",
21+
"migration-build": "npm run build -w=brubeck-migration-script",
22+
"migration-run": "npm run migration -w=brubeck-migration-script"
23+
},
24+
"devDependencies": {
25+
"@types/chai": "4.3.0",
26+
"@types/mocha": "9.1.0",
27+
"@types/node": "16.11.25",
28+
"eslint": "7.25.0",
29+
"chai": "4.3.6",
30+
"mocha": "9.2.0",
31+
"eslint-config-streamr-ts": "4.0.1",
32+
"eslint-plugin-promise": "5.2.0",
33+
"@typescript-eslint/eslint-plugin": "4.33.0",
34+
"@typescript-eslint/parser": "4.33.0",
35+
"eslint-plugin-chai-friendly": "0.6.0",
36+
"ts-node": "10.4.0",
37+
"typescript": "4.2.4"
38+
}
3839
}

0 commit comments

Comments
 (0)