-
-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
66 lines (66 loc) · 2.6 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
{
"name": "data-grid-component",
"version": "2.0.11",
"description": "Standalone data grid web component",
"type": "module",
"main": "data-grid",
"scripts": {
"test": "ava",
"build-min": "esbuild --bundle --minify --loader:.css=text --loader:.html=text --sourcemap --format=esm data-grid.js --outfile=dist/data-grid.min.js",
"build-dev": "esbuild --bundle --loader:.css=text --loader:.html=text --sourcemap --format=esm data-grid.js --outfile=dist/data-grid.js --banner:js=\"/*** Data Grid Web Component v2.0.11 * https://github.com/lekoala/data-grid ***/\"",
"build": "npm run build-min && npm run build-dev",
"start": "npm run build-dev -- --servedir=.",
"watch": "npm run build-dev -- --watch",
"compile-css-min": "sass data-grid.scss:dist/data-grid.min.css --style compressed",
"compile-css-dev": "sass data-grid.scss dist/data-grid.css --embed-sources",
"watch-css": "npm run compile-css-dev -- --watch --poll",
"prefix-css-min": "postcss dist/data-grid.min.css --replace --use autoprefixer",
"prefix-css-dev": "postcss dist/data-grid.css --replace --use autoprefixer --map",
"build-css-min": "npm run compile-css-min && npm run prefix-css-min",
"build-css-dev": "npm run compile-css-dev && npm run prefix-css-dev",
"build-css": "npm run build-css-min && npm run build-css-dev",
"build-all-locally": "npm run build && npm run build-css",
"build-all": "npm run build-all-locally && git add -A && git commit -m \"build files\"",
"bump": "npm run build-all && npm version patch",
"update-deps": "npx npm-check-updates -u",
"jsdoc": "jsdoc -c jsdoc.conf.json -d ./jsdoc -r src/",
"jsdoc2md": "jsdoc2md -c jsdoc.conf.json src/data-grid.js",
"local-server": "php -S localhost:8002 -t .",
"format-dry-run": "bunx biome format ./src",
"format": "bunx biome format --write ./src",
"lint-dry-run": "bunx biome lint ./src",
"lint": "bunx biome lint --write ./src"
},
"repository": {
"type": "git",
"url": "https://github.com/lekoala/data-grid"
},
"keywords": [
"web-component",
"data",
"grid",
"es6"
],
"ava": {
"require": [
"./test/_setup-browser-env.js"
]
},
"devDependencies": {
"@happy-dom/global-registrator": "^15.11.7",
"ava": "^6.2.0",
"esbuild": "^0.24.0",
"jsdoc": "^4.0.4",
"jsdoc-plugin-intersection": "^1.0.4",
"jsdoc-to-markdown": "^9.1.1",
"jsdoc-tsimport-plugin": "^1.0.5"
},
"author": "LeKoala",
"license": "MIT",
"dependencies": {
"autoprefixer": "^10.4.20",
"postcss": "^8.4.49",
"postcss-cli": "^11.0.0",
"sass": "^1.82.0"
}
}