configuration/package.json

43 lines
1.1 KiB
JSON

{
"name": "configuration",
"version": "0.0.1",
"description": "Fennec configuration loader and share info.",
"main": "./lib/index.js",
"types": "./lib/types/index.d.ts",
"type": "module",
"scripts": {
"prebuild": "rimraf lib",
"build": "tsc -p \"tsconfig.build.json\"",
"start:example-register": "DEBUG=* ts-node ./examples/register.ts",
"start:example-config-loader": "DEBUG=* node --loader ts-node/esm ./examples/config-loader.ts",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "https://git.ivanli.cc/Fennec/configuration"
},
"keywords": [
"configuration",
"fennec",
"etcd"
],
"author": "Ivan Li <ivanli2048@gmail.com>",
"license": "MIT",
"dependencies": {
"debug": "^4.3.2",
"esm": "^3.2.25",
"etcd3": "^1.1.0",
"find-up": "^6.1.0",
"js-yaml": "^4.1.0"
},
"devDependencies": {
"@tsconfig/node14": "^1.0.1",
"@types/debug": "^4.1.7",
"@types/js-yaml": "^4.0.3",
"@types/node": "^14.17.17",
"rimraf": "^3.0.2",
"ts-node": "^10.2.1",
"typescript": "^4.5.0-beta"
}
}