-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
79 lines (79 loc) · 2.35 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
{
"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": "[email protected]",
"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": "19.4.1",
"@commitlint/config-conventional": "19.4.1",
"@swc/core": "1.7.24",
"@swc/jest": "0.2.36",
"@types/jest": "29.5.12",
"@typescript-eslint/eslint-plugin": "6.21.0",
"@typescript-eslint/parser": "6.21.0",
"eslint": "8.57.0",
"eslint-config-airbnb-base": "15.0.0",
"eslint-config-airbnb-typescript": "17.1.0",
"eslint-config-prettier": "9.1.0",
"eslint-plugin-import": "2.30.0",
"husky": "8.0.3",
"jest": "29.7.0",
"lint-staged": "15.2.10",
"madge": "7.0.0",
"prettier": "3.3.3",
"rimraf": "6.0.1",
"ts-jest": "29.2.5",
"typedoc": "0.26.6",
"typescript": "5.5.4"
},
"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"
}
}