-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
24 lines (24 loc) · 1.05 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
{
"name": "@aragon/monorepo-templates",
"version": "1.0.0",
"private": true,
"description": "Monorepo for all Aragon templates",
"author": "Aragon Association <legal@aragon.org>",
"license": "GPL-3.0-or-later",
"scripts": {
"install": "npm run bootstrap",
"bootstrap": "lerna bootstrap",
"lint": "lerna run --scope=@aragon/templates-* lint",
"test": "npm run test:all",
"test:all": "lerna run --scope=@aragon/templates-* --concurrency=1 --stream test:geth",
"test:bare": "lerna run --scope=@aragon/templates-bare --stream test:geth",
"test:trust": "lerna run --scope=@aragon/templates-trust --stream test:geth",
"test:company": "lerna run --scope=@aragon/templates-company --stream test:geth",
"test:company:board": "lerna run --scope=@aragon/templates-company-board --stream test:geth",
"test:membership": "lerna run --scope=@aragon/templates-membership --stream test:geth",
"test:reputation": "lerna run --scope=@aragon/templates-reputation --stream test:geth"
},
"devDependencies": {
"lerna": "^3.0.0"
}
}