forked from OpenZeppelin/openzeppelin-sdk
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
31 lines (31 loc) · 787 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
29
30
31
{
"name": "root",
"private": true,
"engines": {
"yarn": "^1.9.0"
},
"workspaces": [
"examples/*",
"packages/*",
"tests/cli/test",
"tests/cli/workdir",
"tests/kits/test",
"tests/kits/workdir",
"tests/mocks/*"
],
"nohoist": [
"**/mock-stdlib"
],
"scripts": {
"docs": "oz-docs -c packages/cli/docs -c packages/lib/docs",
"docs:watch": "npm run docs watch packages/lib/contracts packages/cli/src/{commands,bin}",
"lint:check": "lerna run lint:check",
"prepare": "yarn --cwd bootstrap && lerna run prepare"
},
"devDependencies": {
"lerna": "^3.13.4",
"mock-stdlib-root": "file:./packages/cli/test/mocks/mock-stdlib",
"openzeppelin-docs-utils": "github:OpenZeppelin/docs-utils",
"yarn": "^1.17.3"
}
}