80 lines
2.2 KiB
JSON
80 lines
2.2 KiB
JSON
{
|
|
"name": "@cubetiq/react-chart-js",
|
|
"version": "1.0.6",
|
|
"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",
|
|
"build:test": "yarn jest && yarn build",
|
|
"publish": "npm publish --access public",
|
|
"run:example": "cd examples/line-chart-example && yarn start"
|
|
},
|
|
"publishConfig": {
|
|
"registry": "https://npm.osa.cubetiqs.com"
|
|
},
|
|
"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": "^16.9.52",
|
|
"@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": "^16.14.0",
|
|
"ts-jest": "^26.3.0",
|
|
"tsc": "^1.20150623.0",
|
|
"typescript": "^4.0.2"
|
|
},
|
|
"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": "^2.9.3"
|
|
}
|
|
}
|