forked from module-federation/module-federation-examples
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
20 lines (20 loc) · 782 Bytes
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
{
"name": "umd-federation",
"private": true,
"version": "1.0.0",
"description": "UMD output target for Module Federation",
"main": "index.js",
"scripts": {
"preinstall": "find . -name \"noexist\" -type d -prune -exec rm -rf '{}' +; pnpm install --ignore-scripts",
"test": "echo \"Error: no test specified\" && exit 1",
"start": "pnpm --filter umd-federation_app* --parallel start",
"e2e:ci": "pnpm start & wait-on http-get://localhost:9001/ && npx cypress run --config-file ../cypress-e2e/config/cypress.config.ts --config '{\"supportFile\": \"../cypress-e2e/support/e2e.ts\"}' --spec \"./e2e/*.cy.ts\" --browser=chrome"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"wait-on": "7.2.0",
"umfjs": "0.3.7"
}
}