-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
87 lines (87 loc) · 2.67 KB
/
package.json
File metadata and controls
87 lines (87 loc) · 2.67 KB
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
80
81
82
83
84
85
86
87
{
"name": "@storynode/jql",
"version": "0.4.2",
"description": "A sql-like querying and aggregating interface for javascript objects and the DOM",
"contributors": [
{
"name": "Andrea Coronese",
"email": "sixpounder@protonmail.com"
}
],
"engines": {
"node": ">=16.0.0"
},
"keywords": [
"sql",
"dom",
"query",
"collections"
],
"repository": {
"url": "git+https://github.com/sixpounder/jql.git"
},
"exports": {
".": {
"types": "./dist/types/mod.d.ts",
"main": "./dist/jql.cjs",
"module": "./dist/jql.mjs",
"default": "./dist/jql.mjs"
}
},
"scripts": {
"build": "rimraf ./dist && tsc && npm run build:mjs && npm run build:cjs",
"build:mjs": "esbuild ./src/mod.ts --sourcemap --bundle --tree-shaking=true --format=esm --minify --outfile=dist/jql.mjs",
"build:cjs": "esbuild ./src/mod.ts --sourcemap --bundle --tree-shaking=true --format=cjs --minify --outfile=dist/jql.cjs",
"build:docs": "typedoc",
"lint": "eslint --fix",
"link": "npm run build && cd dist && npm link",
"check-versions": "node build/align-versions.cjs",
"publish-package": "npm run check-versions && npm run build && npm test && npm publish --access public",
"publish-package-jsr": "npm run check-versions && npm run build && npm test && jsr publish",
"release:minor": "standard-version --release-as minor && npm run check-versions",
"release:patch": "standard-version --release-as patch && npm run check-versions",
"release:major": "standard-version --release-as major && npm run check-versions",
"precommit": "npx lint-staged",
"prepare": "husky",
"test": "jest --coverage"
},
"author": "Andrea Coronese <sixpounder@protonmail.com>",
"license": "GPL-3.0-only",
"devDependencies": {
"@commitlint/config-conventional": "^20.0.0",
"@eslint/js": "^9.39.1",
"@types/jest": "^29.5.8",
"@types/jsdom": "^21.1.5",
"@types/lodash": "^4.17.5",
"@types/lodash-es": "^4.17.12",
"@typescript-eslint/eslint-plugin": "^8.47.0",
"@typescript-eslint/parser": "^8.47.0",
"commitlint": "^20.1.0",
"esbuild": "^0.25.2",
"eslint": "^9.33.0",
"husky": "^9.1.7",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"jsdom": "^22.1.0",
"jsr": "^0.13.1",
"lint-staged": "^16.2.7",
"lodash": "^4.17.21",
"rimraf": "^6.1.2",
"standard-version": "^9.5.0",
"ts-jest": "^29.1.1",
"typedoc": "^0.26.11",
"typescript": "^5.2.2",
"typescript-eslint": "^8.47.0"
},
"dependencies": {
"lodash-es": "^4.17.21"
},
"files": [
"dist/**",
"README.md",
"LICENSE"
],
"lint-staged": {
"*": "npm run lint"
}
}