mirror of
https://github.com/kevinsqi/react-circular-progressbar.git
synced 2025-12-08 20:25:50 +00:00
53 lines
1.5 KiB
JSON
53 lines
1.5 KiB
JSON
{
|
|
"name": "react-circular-progressbar",
|
|
"version": "0.1.1",
|
|
"description": "A circular progress indicator component",
|
|
"author": "Kevin Qi <iqnivek@gmail.com>",
|
|
"main": "./build/index.js",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/iqnivek/react-circular-progressbar.git"
|
|
},
|
|
"license": "MIT",
|
|
"keywords": [
|
|
"progressbar",
|
|
"react",
|
|
"react-component",
|
|
"svg"
|
|
],
|
|
"scripts": {
|
|
"build": "NODE_ENV=production webpack",
|
|
"build:demo": "NODE_ENV=demo webpack",
|
|
"deploy:demo": "npm run build:demo && ./scripts/build_ghpages.sh",
|
|
"clean": "rimraf build",
|
|
"lint": "eslint src test",
|
|
"prepublish": "npm run clean && npm run build",
|
|
"test": "mocha --compilers js:babel-register --recursive --require ./test/setup.js",
|
|
"test:watch": "npm test -- --watch",
|
|
"start": "webpack-dev-server --progress --inline"
|
|
},
|
|
"devDependencies": {
|
|
"babel-core": "^6.3.15",
|
|
"babel-eslint": "^6.0.4",
|
|
"babel-loader": "^6.2.0",
|
|
"babel-preset-es2015": "^6.3.13",
|
|
"babel-preset-react": "^6.3.13",
|
|
"babel-register": "^6.8.0",
|
|
"chai": "^3.5.0",
|
|
"enzyme": "^2.3.0",
|
|
"eslint": "^2.9.0",
|
|
"eslint-config-airbnb": "^9.0.1",
|
|
"eslint-plugin-react": "^5.0.1",
|
|
"jsdom": "^9.0.0",
|
|
"mocha": "^2.4.5",
|
|
"react-addons-test-utils": "^15.0.2",
|
|
"react-dom": "^15.0.1",
|
|
"rimraf": "^2.3.4",
|
|
"webpack": "^1.12.9",
|
|
"webpack-dev-server": "^1.14.1"
|
|
},
|
|
"peerDependencies": {
|
|
"react": "^0.14.0 || ^15.0.0"
|
|
}
|
|
}
|