-
Notifications
You must be signed in to change notification settings - Fork 94
/
Copy pathpackage.json
73 lines (73 loc) · 1.88 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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
{
"name": "react-rating",
"version": "2.0.6",
"description": "A rating react component with custom symbols",
"main": "lib/react-rating.cjs.js",
"module": "lib/react-rating.esm.js",
"typings": "./index.d.ts",
"files": [
"index.d.ts",
"README.md",
"LICENSE.md",
"lib/"
],
"scripts": {
"test": "mocha --compilers js:@babel/register --recursive",
"lint": "eslint src --ext .js,.jsx",
"dev": "rollup -c -w",
"build": "rollup -c",
"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": ">=16.3.0",
"react-dom": ">=16.3.0"
},
"devDependencies": {
"@babel/core": "^7.0.0",
"@babel/preset-env": "^7.0.0",
"@babel/preset-react": "^7.0.0",
"@babel/register": "^7.0.0",
"@babel/standalone": "^7.0.0",
"babel-eslint": "^9.0.0",
"babel-plugin-transform-react-remove-prop-types": "^0.4.24",
"bootstrap": "^3.3.5",
"chai": "^4.1.2",
"cross-env": "^5.2.0",
"eslint": "^5.5.0",
"eslint-plugin-react": "^7.11.1",
"font-awesome": "^4.3.0",
"mocha": "^5.2.0",
"prismjs": "^1.6.0",
"prop-types": "^15.6.0",
"react": "^16.0.0",
"react-dom": "^16.0.0",
"react-test-renderer": "^16.4.2",
"rollup": "^1.10.1",
"rollup-plugin-babel": "^4.3.2",
"rollup-plugin-terser": "^4.0.4"
},
"dependencies": {
"@types/lodash": "^4.14.105",
"@types/react": "^16.0.40"
}
}