mirror of
https://github.com/gregberge/loadable-components.git
synced 2025-12-08 19:46:26 +00:00
36 lines
1018 B
JSON
36 lines
1018 B
JSON
{
|
|
"name": "@loadable/server",
|
|
"description": "Server utilities for loadable.",
|
|
"version": "5.16.0",
|
|
"main": "lib/index.js",
|
|
"repository": "git@github.com:gregberge/loadable-components.git",
|
|
"author": "Greg Bergé <berge.greg@gmail.com>",
|
|
"publishConfig": {
|
|
"access": "public"
|
|
},
|
|
"keywords": [
|
|
"loadable"
|
|
],
|
|
"engines": {
|
|
"node": ">=8"
|
|
},
|
|
"funding": {
|
|
"type": "github",
|
|
"url": "https://github.com/sponsors/gregberge"
|
|
},
|
|
"license": "MIT",
|
|
"scripts": {
|
|
"prebuild": "shx rm -rf lib",
|
|
"build": "BUILD_TARGET=node babel --config-file ../../babel.config.js -d lib --ignore \"**/*.test.js\" src",
|
|
"prepublishOnly": "yarn run build",
|
|
"update-fixtures": "yarn --cwd ../../examples/__fixtures__ build:webpack && rm -rf ./__fixtures__ && cp -R ../../examples/__fixtures__/target ./__fixtures__ "
|
|
},
|
|
"peerDependencies": {
|
|
"@loadable/component": "^5.0.1",
|
|
"react": "^16.3.0 || ^17.0.0 || ^18.0.0"
|
|
},
|
|
"dependencies": {
|
|
"lodash": "^4.17.15"
|
|
}
|
|
}
|