@sequeljs/ast
Version:
A SQL AST manager for JavaScript
80 lines (79 loc) • 2.41 kB
JSON
{
"name": "@sequeljs/ast",
"version": "0.3.13",
"description": "A SQL AST manager for JavaScript",
"keywords": [
"ast",
"database",
"sequel",
"sequeljs",
"sql"
],
"license": "MIT",
"homepage": "https://sequel.js.org/",
"repository": {
"type": "git",
"url": "https://github.com/sequeljs/ast.git"
},
"bugs": {
"url": "https://github.com/sequeljs/ast/issues"
},
"author": {
"name": "Rodrigo Scomação do Nascimento",
"email": "rodrigo.sc.na@gmail.com",
"url": "https://github.com/rodrigoscna"
},
"exports": {
"import": "./dist/es/index.js",
"require": "./dist/cjs/index.js"
},
"type": "module",
"types": "./dist/types/index.d.ts",
"files": [
"dist",
"src"
],
"devDependencies": {
"@commitlint/cli": "17.2.0",
"@commitlint/config-conventional": "17.2.0",
"@swc/core": "1.3.19",
"@swc/jest": "0.2.23",
"@types/jest": "27.5.0",
"@typescript-eslint/eslint-plugin": "5.43.0",
"@typescript-eslint/parser": "5.43.0",
"eslint": "8.27.0",
"eslint-config-airbnb-base": "15.0.0",
"eslint-config-airbnb-typescript": "17.0.0",
"eslint-config-prettier": "8.5.0",
"eslint-plugin-import": "2.26.0",
"husky": "8.0.2",
"jest": "27.5.1",
"madge": "5.0.1",
"prettier": "2.7.1",
"pretty-quick": "3.1.3",
"rimraf": "3.0.2",
"ts-jest": "27.1.4",
"typedoc": "0.23.21",
"typescript": "4.9.3"
},
"scripts": {
"build": "npm run build:cjs && npm run build:es && npm run build:types",
"build:cjs": "tsc -p ./tsconfig.cjs.json",
"build:es": "tsc -p ./tsconfig.es.json",
"build:types": "tsc -p ./tsconfig.types.json",
"clean": "rimraf cjs coverage es types",
"docs:build": "typedoc",
"docs:clean": "rimraf docs",
"graphs:build": "npm run graphs:build:dependency-tree",
"graphs:build:dependency-tree": "madge --image ./graphs/dependency-tree.svg ./src/index.ts",
"graphs:clean": "rimraf graphs && mkdir graphs",
"husky:install": "husky install",
"lint": "eslint --max-warnings=0 ./{src,tests}/*.{js,jsx,ts,tsx}",
"prepare": "npm run husky:install && npm run clean && npm run build",
"pretest": "npm run lint",
"test": "jest",
"test:coverage": "npm run test -- --coverage",
"test:watch": "npm run test:coverage -- --watch",
"test:watchAll": "npm run test:coverage -- --watchAll"
}
}