forked from carbon-design-system/carbon-charts
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
54 lines (54 loc) · 1.06 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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
{
"name": "@carbon/charts-monorepo",
"private": true,
"description": "Carbon charting components, lerna monorepo",
"repository": {
"type": "git",
"url": "git@github.com:IBM/carbon-charts.git"
},
"keywords": [
"charts"
],
"author": "IBM",
"license": "Apache-2.0",
"scripts": {
"clean": "lerna clean && lerna run clean && rm -rf node_modules",
"commit": "git-cz",
"test": "lerna run test",
"lint": "lerna run lint",
"build": "yarn build-all",
"build-all": "bash scripts/build-packages-and-demos.sh",
"build-all-demos": "bash scripts/build-demos.sh",
"deploy": "bash scripts/deploy.sh"
},
"workspaces": {
"packages": [
"packages/*"
]
},
"husky": {
"hooks": {
"pre-push": "bash scripts/prepush.sh"
}
},
"release": {
"branch": "master"
},
"devDependencies": {
"commitizen": "4.0.3",
"cz-conventional-changelog": "3.1.0",
"husky": "4.2.1",
"lerna": "3.20.2"
},
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
},
"maintainers": [
{
"name": "Eliad Moosavi",
"email": "iliadm@ca.ibm.com"
}
]
}