keepasshttp-client
Version:
Node.js module for interaction with KeePassHTTP
57 lines (56 loc) • 1.66 kB
JSON
{
"name": "keepasshttp-client",
"version": "2.2.12",
"description": "Node.js module for interaction with KeePassHTTP",
"author": "Vladimir Yakovlev <dev.vladimir.y@gmail.com> (https://github.com/vladimiry)",
"license": "MIT",
"repository": "git@github.com:vladimiry/keepasshttp-client.git",
"keywords": [
"keepass",
"password",
"security",
"client"
],
"main": "./lib/index.js",
"scripts": {
"lib:compile": "tsc -p ./src/lib/tsconfig.json --listEmittedFiles",
"lib:compile:watch": "tsc -p ./src/lib/tsconfig.json -w",
"lib:clean": "rimraf ./lib",
"lib": "npm-run-all lint lib:clean lib:compile test",
"lint:src": "tslint -p ./src/lib/tsconfig.json -c ./tslint.json \"./src/{lib,@types}/**/*.ts\"",
"lint:test": "tslint -p ./src/test/tsconfig.json -c ./src/test/tslint.json \"./src/test/**/*.ts\"",
"lint": "npm-run-all lint:src lint:test",
"test": "cross-env TS_NODE_PROJECT=./src/test/tsconfig.json ava --verbose \"./src/test/**/*.spec.ts\""
},
"pre-commit": [
"lint"
],
"ava": {
"compileEnhancements": false,
"extensions": [
"ts"
],
"require": [
"ts-node/register",
"tsconfig-paths/register"
]
},
"devDependencies": {
"@types/node": "^12.0.7",
"@types/node-fetch": "^2.3.5",
"ava": "^1.2.1",
"cross-env": "^5.2.0",
"npm-run-all": "^4.1.5",
"pre-commit": "^1.2.2",
"rimraf": "^2.6.3",
"ts-node": "^8.2.0",
"tsconfig-paths": "^3.8.0",
"tslint": "^5.17.0",
"tslint-rules-bunch": "^0.0.8",
"typescript": "^3.5.1"
},
"dependencies": {
"node-fetch": "^2.6.0",
"tslib": "^1.9.3"
}
}