-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
47 lines (47 loc) · 1.02 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
{
"name": "wimbledon-champions",
"version": "3.0.2",
"description": "List of 'Open Era' Wimbledon singles champions, 1968–present.",
"repository": {
"type": "git",
"url": "https://github.com/brightpixels/wimbledon-champions.git"
},
"main": "dist/bundle.cjs",
"module": "dist/bundle.esm.js",
"browser": "dist/bundle.umd.js",
"scripts": {
"prebuild": "rm -rf ./dist",
"prepublish": "rm -rf ./dist && npm run build",
"build": "rollup -c",
"build:watch": "rollup -c -w",
"test": "bundlesize"
},
"bundlesize": [
{
"path": "./dist/bundle.*.js",
"maxSize": "3 kB"
}
],
"keywords": [
"sports",
"tennis",
"wimbledon"
],
"author": "",
"license": "MIT",
"dependencies": {},
"devDependencies": {
"@babel/core": "7.5.5",
"@babel/preset-env": "7.5.5",
"bundlesize": "0.18.0",
"rollup": "1.19.4",
"rollup-plugin-babel": "4.3.3",
"rollup-plugin-json": "4.0.0"
},
"files": [
"dist/*"
],
"browserslist": [
"ie 11"
]
}