-
-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
64 lines (64 loc) · 1.6 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
{
"name": "buttermilk",
"description": "Beautifully simple isomorphic routing for React projects.",
"version": "2.0.1",
"repository": {
"type": "git",
"url": "https://github.com/probablyup/buttermilk"
},
"homepage": "https://buttermilk.js.org/",
"author": "Evan Jacobs (https://probablyup.com)",
"main": "dist/cjs.js",
"module": "dist/es.js",
"files": [
"dist",
"README.md"
],
"scripts": {
"build": "NODE_ENV=production rollup -c rollup.config.js",
"test": "jest",
"size": "bundlesize",
"prepublish": "npm run build"
},
"peerDependencies": {
"prop-types": ">= 15",
"react": ">= 16.8",
"react-dom": ">= 16.8",
"react-is": ">= 16.8"
},
"devDependencies": {
"@babel/core": "^7.0.0",
"@babel/preset-env": "^7.0.0",
"@babel/preset-react": "^7.0.0",
"babel-jest": "^26.6.3",
"bundlesize": "^0.18.0",
"codecov": "^3.2.0",
"jest": "^26.6.3",
"jest-environment-jsdom-global": "^2.0.4",
"lodash": "^4.17.11",
"prop-types": "^15.7.2",
"react": "^16.8.2",
"react-dom": "^16.8.2",
"react-is": "^16.8.2",
"rollup": "^0.57.1",
"rollup-plugin-babel": "^4.0.1",
"rollup-plugin-commonjs": "^9.1.0",
"rollup-plugin-node-resolve": "^3.3.0",
"rollup-plugin-replace": "^2.0.0",
"rollup-plugin-sourcemaps": "^0.4.2",
"rollup-plugin-uglify": "^3.0.0"
},
"dependencies": {
"lite-url": "^1.0.5"
},
"jest": {
"clearMocks": true,
"testEnvironment": "jest-environment-jsdom-global"
},
"bundlesize": [
{
"path": "./dist/standalone.min.js",
"maxSize": "5 kB"
}
]
}