forked from kevinsqi/react-circular-progressbar
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
54 lines (54 loc) · 1.61 KB
/
package.json
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
42
43
44
45
46
47
48
49
50
51
52
53
54
{
"name": "react-pie-progressbar",
"version": "0.6.8",
"description": "A circular progress indicator component",
"author": "Ayy OULIDI <[email protected]>",
"main": "./build/index.js",
"repository": "https://github.com/ayyouboulidi/react-circular-progressbar.git",
"license": "MIT",
"keywords": [
"progressbar",
"react",
"react-component",
"svg"
],
"scripts": {
"build": "NODE_ENV=production webpack && npm run build:demo",
"build:demo": "NODE_ENV=demo webpack && cp ./src/styles.css ./docs/styles.css",
"clean": "rimraf build",
"lint": "eslint src test",
"prepare": "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": "^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",
"react": "^15.4.0",
"react-addons-test-utils": "^15.0.2",
"react-dom": "^15.4.0",
"rimraf": "^2.3.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"
}
}