-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
92 lines (92 loc) · 2.03 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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
{
"name": "react-styled-clickable-progress-bar",
"version": "1.0.11",
"description": "A clickable progress bar, using styled-components",
"peerDependencies": {
"prop-types": "^15.6.0",
"react": "^16.0.0",
"react-dom": "^16.0.0"
},
"scripts": {
"dev": "webpack-dev-server --mode development --open",
"test": "xo --fix",
"build": "babel ./src --out-dir ./dist -s inline"
},
"files": [
"dist/*"
],
"main": "dist/index.js",
"repository": {
"type": "git",
"url": "git+https://github.com/piotryordanov/react-styled-clickable-progress-bar"
},
"keywords": [
"react",
"react-component",
"progress-bar",
"styled-components"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/piotryordanov/react-styled-clickable-progress-bar/issues"
},
"homepage": "https://github.com/piotryordanov/react-styled-clickable-progress-bar#README.md",
"author": {
"name": "Piotr Yordanov",
"email": "[email protected]"
},
"devDependencies": {
"@babel/cli": "^7.4.4",
"@babel/core": "^7.4.5",
"@babel/preset-env": "^7.4.5",
"@babel/preset-react": "^7.0.0",
"eslint-config-xo-react": "^0.19.0",
"husky": "^2.5.0",
"path": "^0.12.7",
"prop-types": "^15.6.0",
"react": "^16.0.0",
"react-dom": "^16.0.0"
},
"babel": {
"presets": [
"@babel/preset-env",
"@babel/preset-react"
],
"plugins": [
[
"styled-components",
{
"ssr": true
}
]
]
},
"xo": {
"prettier": true,
"semicolon": false,
"extends": "xo-react",
"rules": {
"import/extensions": [
"error",
"never",
{
"json": "always",
"css": "always"
}
],
"unicorn/filename-case": 0,
"react/jsx-uses-react": 2,
"react/jsx-uses-vars": 2,
"react/jsx-tag-spacing": 0,
"react/react-in-jsx-scope": 2
}
},
"husky": {
"hooks": {
"pre-commit": "npm test"
}
},
"dependencies": {
"styled-components": "^4.3.2"
}
}