-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
94 lines (94 loc) · 1.98 KB
/
package.json
File metadata and controls
94 lines (94 loc) · 1.98 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
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
93
94
{
"name": "react-datawrapper-chart",
"description": "React component to embed Datawrapper Charts",
"version": "1.1.2",
"author": {
"name": "Fabian Gündel",
"url": "https://github.com/sto3psl"
},
"license": "ISC",
"homepage": "https://github.com/sto3psl/react-datawrapper-chart#readme",
"bugs": {
"url": "https://github.com/sto3psl/react-datawrapper-chart/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/sto3psl/react-datawrapper-chart.git"
},
"keywords": [
"datawrapper",
"chart",
"react",
"component"
],
"files": [
"pkg"
],
"scripts": {
"format": "prettier 'src/**/*.js' --write",
"lint": "prettier --check 'src/**/*.js' && healthier 'src/**/*.js'",
"build": "pika build",
"publish": "pika publish",
"version": "npm run build",
"test": "npm run lint"
},
"dependencies": {
"prop-types": "^15.7.0"
},
"devDependencies": {
"@babel/preset-env": "~7.11.5",
"@babel/preset-react": "~7.10.4",
"@pika/pack": "~0.5.0",
"@pika/plugin-build-web": "~0.9.2",
"@pika/plugin-bundle-web": "~0.9.2",
"@pika/plugin-standard-pkg": "~0.9.2",
"babel-eslint": "~10.1.0",
"healthier": "~4.0.0",
"husky": "~4.3.0",
"lint-staged": "~10.3.0",
"prettier": "~2.1.1",
"react": "~16.13.1",
"react-dom": "~16.13.1"
},
"peerDependencies": {
"react": "^16.8 - ^18"
},
"eslintConfig": {
"parser": "babel-eslint"
},
"lint-staged": {
"*.js": [
"prettier --write",
"healthier"
]
},
"prettier": {
"semi": false,
"printWidth": 100,
"singleQuote": true
},
"@pika/pack": {
"pipeline": [
[
"@pika/plugin-standard-pkg"
],
[
"@pika/plugin-build-web"
],
[
"@pika/plugin-bundle-web"
]
]
},
"browserslist": [
">0.2%",
"not dead",
"not ie <= 11",
"not op_mini all"
],
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
}
}