-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
34 lines (34 loc) · 983 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": "kiwi-components",
"version": "0.0.0",
"scripts": {
"install:all": "lerna exec -- npm install",
"clean-install:all": "lerna exec -- npm clean-install",
"clean:all": "lerna run --parallel clean",
"audit:all": "lerna exec -- npm audit",
"lint:all": "lerna run --parallel lint",
"test:all": "lerna run --parallel test",
"test:e2e:all": "lerna run --parallel test:e2e",
"build:all": "lerna run --parallel build",
"lerna:version": "lerna version",
"lerna:publish": "lerna publish"
},
"devDependencies": {
"@commitlint/cli": "16.2.1",
"@commitlint/config-conventional": "16.2.1",
"@commitlint/config-lerna-scopes": "16.2.2",
"husky": "7.0.4",
"lerna": "4.0.0",
"rimraf": "3.0.2",
"minimist": "1.2.5"
},
"repository": {
"type": "git",
"url": "https://github.com/kiwigrid/kiwi-components.git"
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
}
}