-
Notifications
You must be signed in to change notification settings - Fork 15
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 1.54 KB
/
package.json
File metadata and controls
41 lines (41 loc) · 1.54 KB
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
{
"name": "eazychart-monorepo",
"version": "0.0.1",
"description": "EazyChart is an easy to use reactive library that allows you to add customizable charts into your React or Vue web applications.",
"keywords": ["chart", "library", "svg", "react", "dataviz", "graph", "typescript", "javascript", "data", "visualization", "web"],
"author": "Hexastack",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/Hexastack/eazychart.git"
},
"bugs": {
"url": "https://github.com/Hexastack/eazychart/issues"
},
"homepage": "https://eazychart.com",
"private": true,
"devDependencies": {
"react-syntax-highlighter": "^15.5.0",
"@commitlint/cli": "^16.0.1",
"@commitlint/config-conventional": "^16.0.0",
"husky": "^7.0.4",
"lerna": "^4.0.0"
},
"engines": {
"node": "=16"
},
"scripts": {
"prepare": "husky install",
"clean": "lerna clean",
"bootstrap": "lerna bootstrap",
"setup": "lerna clean -y && rm -rf node_modules/ && yarn && lerna bootstrap",
"storybook:react": "lerna run storybook --scope=eazychart-react --stream",
"storybook:vue": "lerna run storybook --scope=eazychart-vue --stream",
"storybook": "lerna run storybook --scope=eazychart-vue --scope=eazychart-react --stream",
"test:core": "lerna run test --scope=eazychart-core --stream",
"test:vue": "lerna run test --scope=eazychart-vue --stream",
"test:react": "lerna run test --scope=eazychart-react --stream",
"test": "lerna run test --stream",
"build": "lerna run build --stream"
}
}