-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathpackage.json
29 lines (29 loc) · 1.37 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
{
"name": "@aragonone/voting-connectors",
"version": "1.0.0",
"private": true,
"author": "Aragon One <[email protected]>",
"license": "(GPL-3.0-or-later OR AGPL-3.0-or-later)",
"devDependencies": {
"coveralls": "^3.0.1",
"lcov-result-merger": "^3.1.0",
"lerna": "^3.14.1"
},
"scripts": {
"install": "node scripts/install",
"bootstrap": "lerna bootstrap --hoist --nohoist=@aragon/* --nohoist=@aragonone/*",
"bootstrap:ci": "npm run bootstrap -- --no-ci",
"clean": "git clean -fdxi apps",
"test": "npm run test:all",
"test:all": "lerna run --scope=@aragonone/* --concurrency=1 --stream test",
"test:token-wrapper": "lerna run --scope=@aragonone/apps-token-wrapper --stream test",
"test:voting-aggregator": "lerna run --scope=@aragonone/apps-voting-aggregator --stream test",
"test:shared": "lerna run --scope=@aragonone/voting-connectors-* --stream test",
"coverage": "npm run coverage:all",
"coverage:all": "lerna run --scope=@aragonone/* --concurrency=1 --stream coverage",
"coverage:token-wrapper": "lerna run --scope=@aragonone/apps-token-wrapper --stream coverage",
"coverage:voting-aggregator": "lerna run --scope=@aragonone/apps-voting-aggregator --stream coverage",
"coverage:shared": "lerna run --scope=@aragonone/voting-connectors-* --stream coverage",
"lint": "lerna run --scope=@aragonone/* lint"
}
}