forked from dreyescat/react-rating
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 1.71 KB
/
Copy pathpackage.json
File metadata and controls
64 lines (64 loc) · 1.71 KB
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
55
56
57
58
59
60
61
62
63
64
{
"name": "react-rating",
"version": "0.9.0",
"description": "A rating react component with custom symbols",
"main": "lib/react-rating.js",
"files": [
"README.md",
"LICENSE.md",
"lib/",
"src/"
],
"scripts": {
"test": "mocha --compilers js:babel/register --recursive",
"lint": "eslint src --ext .js,.jsx",
"dev": "webpack-dev-server --progress --colors --host 0.0.0.0 --port 8080",
"build": "cross-env BUILD_DEV=1 webpack --progress && webpack -p --output-filename react-rating.min.js --progress",
"version": "npm run build && git add -A lib",
"postversion": "git push && git push --tags",
"gh-pages": "./scripts/gh-pages.sh"
},
"repository": {
"type": "git",
"url": "https://github.com/dreyescat/react-rating.git"
},
"keywords": [
"rating",
"react",
"component",
"react-component",
"bootstrap",
"fontawesome"
],
"author": "dreyescat",
"license": "MIT",
"bugs": {
"url": "https://github.com/dreyescat/react-rating/issues"
},
"homepage": "https://github.com/dreyescat/react-rating",
"peerDependencies": {
"react": ">=0.13.0"
},
"devDependencies": {
"babel": "^5.8.20",
"babel-core": "^5.7.4",
"babel-eslint": "^7.2.2",
"babel-loader": "^5.3.2",
"bootstrap": "^3.3.5",
"chai": "^3.2.0",
"create-react-class": "^15.5.1",
"cross-env": "^3.2.4",
"eslint": "^4.7.2",
"eslint-loader": "^1.7.1",
"eslint-plugin-react": "^7.4.0",
"font-awesome": "^4.3.0",
"mocha": "^2.2.5",
"node-libs-browser": "^0.5.2",
"prismjs": "^1.6.0",
"prop-types": "^15.5.8",
"react": "^16.0.0",
"react-dom": "^16.0.0",
"webpack": "^1.10.1",
"webpack-dev-server": "^1.10.1"
}
}