Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
62 lines
1.8 KiB
JSON
62 lines
1.8 KiB
JSON
{
|
|
"name": "singleton-manager",
|
|
"version": "1.8.0",
|
|
"description": "Manage singletons across multiple major versions so they converge to a single instance",
|
|
"license": "MIT",
|
|
"author": "ing-bank",
|
|
"homepage": "https://github.com/ing-bank/lion/",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/ing-bank/lion.git",
|
|
"directory": "packages/singleton-manager"
|
|
},
|
|
"type": "module",
|
|
"exports": {
|
|
".": {
|
|
"types": "./dist-types/src/index.d.ts",
|
|
"default": "./src/index.js"
|
|
},
|
|
"./docs/*": "./docs/*"
|
|
},
|
|
"main": "./src/index.js",
|
|
"files": [
|
|
"dist-types",
|
|
"docs",
|
|
"src",
|
|
"test"
|
|
],
|
|
"scripts": {
|
|
"debug": "cd ../../ && npm run debug -- --group singleton-manager",
|
|
"debug:firefox": "cd ../../ && npm run debug:firefox -- --group singleton-manager",
|
|
"debug:webkit": "cd ../../ && npm run debug:webkit -- --group singleton-manager",
|
|
"prepublishOnly": "npm run types && npm run publish-docs",
|
|
"publish-docs": "node ../../packages-node/publish-docs/src/cli.js --github-url https://github.com/ing-bank/lion/ --git-root-dir ../../",
|
|
"start:fail": "es-dev-server -c demo/fail/server.js",
|
|
"start:singleton": "es-dev-server -c demo/singleton/server.js",
|
|
"start:singleton-complex": "es-dev-server -c demo/singleton-complex/server.js",
|
|
"test": "cd ../../ && npm run test:browser -- --group singleton-manager",
|
|
"test:node": "mocha test-node",
|
|
"types": "wireit"
|
|
},
|
|
"keywords": [
|
|
"lion",
|
|
"singleton-manager"
|
|
],
|
|
"publishConfig": {
|
|
"access": "public"
|
|
},
|
|
"wireit": {
|
|
"types": {
|
|
"command": "tsc --build --pretty",
|
|
"files": [
|
|
"src/**/*.js",
|
|
"test/**/*.js",
|
|
"types/**",
|
|
"tsconfig.json"
|
|
],
|
|
"output": [
|
|
"dist-types/**"
|
|
]
|
|
}
|
|
}
|
|
}
|