configuration/package.json

39 lines
967 B
JSON
Raw Normal View History

2021-09-25 20:33:10 +08:00
{
"name": "configuration",
"version": "0.0.1",
"description": "Fennec configuration loader and share info.",
"main": "./lib/index.js",
"types": "./lib/types/index.d.ts",
"scripts": {
"prebuild": "rimraf lib",
"build": "tsc -p \"tsconfig.build.json\"",
"start:example-register": "DEBUG=* ts-node ./examples/register.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",
"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",
"typescript": "^4.4.3"
}
}