node-beget
Version:
Client library for accessing Beget API
56 lines (55 loc) • 1.45 kB
JSON
{
"name": "node-beget",
"version": "1.0.9",
"description": "Client library for accessing Beget API",
"main": "build/index.js",
"types": "build/index.d.ts",
"homepage": "https://olehcambel.github.io/node-beget",
"scripts": {
"start": "node ./build/index.js",
"test": "jest --coverage",
"test:watch": "jest --watch --runInBand",
"format": "prettier --write \"{src,test}/**/*.ts\"",
"lint": "eslint 'src/**/*.ts'",
"build": "tsc -p tsconfig.build.json",
"doc": "node ./typedoc && gh-pages -m 'auto commit [ci skip]' -d docs",
"prepush": "npm run lint && npm run build && npm test"
},
"repository": {
"type": "git",
"url": "https://github.com/olehcambel/node-beget.git"
},
"engines": {
"node": ">=10"
},
"keywords": [
"beget",
"api",
"websites",
"domains",
"mail"
],
"author": "",
"license": "ISC",
"devDependencies": {
"@types/jest": "^25.2.2",
"@types/qs": "^6.9.2",
"@typescript-eslint/eslint-plugin": "^2.33.0",
"@typescript-eslint/parser": "^2.33.0",
"eslint": "^6.8.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-prettier": "^3.1.3",
"gh-pages": "^2.2.0",
"jest": "^25.3.0",
"nock": "^12.0.3",
"prettier": "^2.0.5",
"ts-jest": "^25.5.1",
"ts-node": "^8.10.1",
"typedoc": "^0.17.6",
"typescript": "^3.9.2"
},
"dependencies": {
"got": "^11.1.3",
"qs": "^6.9.4"
}
}