mirror of
https://github.com/kevinsqi/react-circular-progressbar.git
synced 2025-12-08 20:25:50 +00:00
60 lines
1.6 KiB
JSON
60 lines
1.6 KiB
JSON
{
|
|
"name": "react-circular-progressbar",
|
|
"version": "1.0.0",
|
|
"description": "A circular progress indicator component",
|
|
"author": "Kevin Qi <iqnivek@gmail.com>",
|
|
"main": "dist/index.js",
|
|
"types": "dist/index.d.ts",
|
|
"files": [
|
|
"dist"
|
|
],
|
|
"repository": "https://github.com/kevinsqi/react-circular-progressbar.git",
|
|
"license": "MIT",
|
|
"keywords": [
|
|
"progressbar",
|
|
"react",
|
|
"react-component",
|
|
"svg"
|
|
],
|
|
"style": "dist/styles.css",
|
|
"scripts": {
|
|
"build": "npm-run-all clean build:css build:js",
|
|
"build:css": "mkdir -p dist && cp ./src/styles.css ./dist/styles.css",
|
|
"build:js": "tsc",
|
|
"clean": "rimraf dist",
|
|
"prepare": "npm run clean && npm run build"
|
|
},
|
|
"devDependencies": {
|
|
"@types/react": "^16.8.14",
|
|
"babel-core": "^6.3.15",
|
|
"babel-eslint": "^7.2.3",
|
|
"babel-loader": "^7.0.0",
|
|
"babel-preset-env": "^1.6.0",
|
|
"babel-preset-react": "^6.3.13",
|
|
"babel-register": "^6.8.0",
|
|
"chai": "^3.5.0",
|
|
"enzyme": "^2.3.0",
|
|
"eslint": "^3.11.0",
|
|
"eslint-config-airbnb": "^14.1.0",
|
|
"eslint-plugin-import": "^2.2.0",
|
|
"eslint-plugin-jsx-a11y": "^4.0.0",
|
|
"eslint-plugin-react": "^6.0.0",
|
|
"jsdom": "^9.0.0",
|
|
"mocha": "^3.3.0",
|
|
"npm-run-all": "^4.1.5",
|
|
"react": "^15.4.0",
|
|
"react-addons-test-utils": "^15.0.2",
|
|
"react-dom": "^15.4.0",
|
|
"rimraf": "^2.3.4",
|
|
"typescript": "^3.4.4",
|
|
"webpack": "^2.5.1",
|
|
"webpack-dev-server": "^2.4.5"
|
|
},
|
|
"dependencies": {
|
|
"prop-types": "^15.5.10"
|
|
},
|
|
"peerDependencies": {
|
|
"react": "^0.14.0 || ^15.0.0 || ^16.0.0"
|
|
}
|
|
}
|