react-chart-js/package.json

77 lines
2.1 KiB
JSON

{
"name": "@cubetiq/react-chart-js",
"version": "1.1.9",
"description": "Chart.js for React and TypeScript",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"author": "SL",
"license": "MIT",
"private": false,
"contributors": [
{
"email": "s.long@cubetiqs.com",
"name": "@s.long",
"url": "https://git.cubetiqs.com/s.long"
},
{
"email": "sombochea@cubetiqs.com",
"name": "@SomboChea",
"url": "https://git.cubetiqs.com/sombochea"
}
],
"keywords": [
"react",
"typescript",
"chartjs"
],
"repository": {
"url": "https://git.cubetiqs.com/CUBETIQ/react-chart-js.git"
},
"scripts": {
"build": "tsc",
"test": "jest",
"pub": "npm publish --access public --registry https://registry.npmjs.org",
"build:test": "yarn jest && yarn build",
"run:example": "cd examples/line-chart-example && yarn start"
},
"devDependencies": {
"@babel/core": "^7.11.4",
"@babel/preset-env": "^7.11.0",
"@babel/preset-typescript": "^7.10.4",
"@types/chart.js": "^2.9.25",
"@types/jest": "^26.0.10",
"@types/node": "^14.6.1",
"@types/react": "^17.0.34",
"@typescript-eslint/eslint-plugin": "^3.10.1",
"@typescript-eslint/parser": "^3.10.1",
"babel-jest": "^26.3.0",
"eslint": "^7.7.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-prettier": "^3.1.4",
"husky": "^4.2.5",
"jest": "^26.4.2",
"lint-staged": "^10.2.13",
"prettier": "^2.1.1",
"react": "^17.0.2",
"ts-jest": "^26.3.0",
"tsc": "^1.20150623.0",
"typescript": "^4.4.4"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"src/**/*.{js,jsx,ts,tsx,json,css,scss,md}": [
"eslint --fix"
],
"test/**/*.{js,jsx,ts,tsx,json,css,scss,md}": [
"eslint --fix"
]
},
"dependencies": {
"chart.js": "^3.6.0"
}
}