-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
34 lines (34 loc) · 894 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
32
33
34
{
"name": "micra",
"license": "MIT",
"author": {
"name": "Olavo Amorim Santos",
"email": "[email protected]"
},
"private": true,
"publishConfig": {
"access": "restricted"
},
"workspaces": [
"packages/*",
"examples/*"
],
"scripts": {
"bootstrap": "lerna bootstrap",
"build": "lerna run build --stream",
"publish-packages": "lerna run publish-package --stream",
"format": "lerna run format --stream --parallel",
"lint": "lerna run lint --parallel --stream",
"run:scoped": "node scripts/scopedCommand.js",
"start": "lerna run start --parallel --stream",
"test": "lerna run test --parallel --stream"
},
"devDependencies": {
"@commitlint/cli": "^9.0.1",
"@commitlint/config-conventional": "^9.0.1",
"fs-extra": "^9.0.1",
"husky": "^4.2.5",
"lerna": "^3.22.1",
"lint-staged": "^10.2.11"
}
}