configuration/package.json

44 lines
1.0 KiB
JSON
Raw Normal View History

2021-09-25 20:33:10 +08:00
{
2021-10-28 22:08:32 +08:00
"name": "@fennec/configuration",
2021-09-25 20:33:10 +08:00
"version": "0.0.1",
"description": "Fennec configuration loader and share info.",
2021-10-28 22:08:32 +08:00
"main": "lib",
"types": "lib/types/index.d.ts",
"files": [
"lib/**/*",
"*.md"
],
2021-09-25 20:33:10 +08:00
"scripts": {
"prebuild": "rimraf lib",
"build": "tsc -p \"tsconfig.build.json\"",
2021-10-28 22:08:32 +08:00
"prepublishOnly": "npm run build",
2021-09-25 20:33:10 +08:00
"start:example-register": "DEBUG=* ts-node ./examples/register.ts",
2021-10-28 22:08:32 +08:00
"start:example-config-loader": "DEBUG=* ts-node ./examples/config-loader.ts"
2021-09-25 20:33:10 +08:00
},
"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",
"etcd3": "^1.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",
2021-10-28 22:08:32 +08:00
"typescript": "^4.4.4"
2021-09-25 20:33:10 +08:00
}
}