8c0bb30530
JS packaging is complicated and testing it manually is irritating. Add a tool in `automerge-js/e2e` which stands up a local NPM registry and publishes the various packages to that registry for use in automated and manual tests. Update the test script in `scripts/ci/js_tests` to run the tests using this tool
23 lines
441 B
JSON
23 lines
441 B
JSON
{
|
|
"name": "e2e",
|
|
"version": "0.0.1",
|
|
"description": "",
|
|
"main": "index.js",
|
|
"scripts": {
|
|
"e2e": "ts-node index.ts"
|
|
},
|
|
"author": "",
|
|
"license": "ISC",
|
|
"dependencies": {
|
|
"@types/node": "^18.7.18",
|
|
"cmd-ts": "^0.11.0",
|
|
"node-fetch": "^2",
|
|
"ts-node": "^10.9.1",
|
|
"typed-emitter": "^2.1.0",
|
|
"typescript": "^4.8.3",
|
|
"verdaccio": "5"
|
|
},
|
|
"devDependencies": {
|
|
"@types/node-fetch": "2.x"
|
|
}
|
|
}
|