anchor/package.json

27 lines
594 B
JSON
Raw Normal View History

2021-01-01 23:21:54 +00:00
{
"name": "anchor",
2023-03-08 18:46:43 +00:00
"version": "1.0.1",
2021-01-01 23:21:54 +00:00
"description": "tiny global application registry",
"main": "src/index.js",
2023-03-08 18:46:43 +00:00
"type": "module",
2021-01-01 23:21:54 +00:00
"directories": {
"test": "test"
},
"scripts": {
2023-03-08 18:46:43 +00:00
"build": "npx esbuild src/index.js --minify --sourcemap --outfile=dist/anchor.min.js",
2021-01-01 23:21:54 +00:00
"test": "npm run build && npm run lint && deno run test/index.spec.js",
"lint": "npx eslint src/index.js"
},
"keywords": [
"utility",
"micro-frontend",
2023-03-08 18:46:43 +00:00
"spa",
"registry"
2021-01-01 23:21:54 +00:00
],
"author": "Geoff Doty",
"license": "MIT",
"devDependencies": {
2023-03-08 18:46:43 +00:00
"eslint": "^8.35.0"
2021-01-01 23:21:54 +00:00
}
}