@narkdown/client
Version:
Get unlimited response of Notion API
115 lines (114 loc) • 2.86 kB
JSON
{
"name": "@narkdown/client",
"version": "0.5.0",
"description": "Get unlimited response of Notion API",
"keywords": [
"notion",
"notionapi",
"notion-api",
"markdown"
],
"repository": {
"type": "git",
"url": "git+https://github.com/narkdown/client.git"
},
"license": "MIT",
"author": "Younho Choo <yo+github@younho9.com>",
"type": "commonjs",
"main": "dist/index.js",
"types": "dist/types/index.d.ts",
"files": [
"dist"
],
"scripts": {
"prebuild": "yarn clean:dist",
"build": "yarn build:src && yarn build:types",
"build:src": "babel src --extensions .ts -d dist --source-maps",
"build:types": "tsc",
"clean": "yarn clean:dist && yarn clean:modules",
"clean:dist": "rimraf dist",
"clean:modules": "rimraf node_modules",
"codecov": "yarn test:coverage && codecov",
"format": "prettier --ignore-path ./node_modules/@younho9/prettier-config/.prettierignore",
"format:pkg": "sort-package-json",
"git:commit-msg": "commitlint --edit",
"git:install-hooks": "husky install",
"git:pre-commit": "lint-staged",
"git:pre-push": "yarn test && yarn build",
"lint": "xo",
"prepare": "yarn git:install-hooks",
"release": "npx np",
"test": "xo && jest",
"test:coverage": "jest --coverage"
},
"commitlint": {
"extends": "@commitlint/config-conventional"
},
"lint-staged": {
"*.{cjs,ts,json,md}": [
"yarn format --write"
],
"*.{cjs,ts,json}": [
"yarn lint --fix"
],
"package.json": [
"yarn format:pkg"
]
},
"babel": {
"presets": [
[
"@babel/preset-env",
{
"targets": {
"node": "12"
}
}
],
"@babel/preset-typescript"
]
},
"xo": {
"prettier": true,
"rules": {
"@typescript-eslint/naming-convention": "off",
"import/extensions": "off"
}
},
"prettier": "@younho9/prettier-config",
"dependencies": {
"@narkdown/notion-utils": "0.1.0",
"@notionhq/client": "0.4.4"
},
"devDependencies": {
"@babel/cli": "7.16.0",
"@babel/core": "7.16.0",
"@babel/preset-env": "7.16.0",
"@babel/preset-typescript": "7.16.0",
"@commitlint/cli": "13.2.1",
"@commitlint/config-conventional": "13.2.0",
"@tsconfig/node12": "1.0.9",
"@types/faker": "5.5.9",
"@types/jest": "27.0.2",
"@types/node": "16.11.6",
"@younho9/prettier-config": "2.2.4",
"codecov": "3.8.3",
"dotenv": "10.0.0",
"husky": "7.0.4",
"jest": "27.3.1",
"lint-staged": "11.2.6",
"prettier": "2.4.1",
"rimraf": "3.0.2",
"sort-package-json": "1.52.0",
"ts-jest": "27.0.7",
"ts-node": "10.4.0",
"typescript": "^4.4.3",
"xo": "0.46.4"
},
"engines": {
"node": ">=12"
},
"publishConfig": {
"access": "public"
}
}