forked from lekoala/data-grid
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
50 lines (50 loc) · 1.62 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
{
"name": "data-grid-component",
"version": "1.5.1",
"description": "Standalone data grid web component",
"type": "module",
"main": "data-grid",
"scripts": {
"test": "ava",
"build": "esbuild --bundle --minify --loader:.css=text --loader:.html=text --sourcemap --format=esm data-grid.js --outfile=data-grid.min.js",
"start": "npm run build -- --servedir=.",
"watch": "npm run build -- --watch",
"compile-css": "sass data-grid.scss:data-grid.min.css --style compressed && sass data-grid.scss data-grid.css",
"watch-css": "npm run compile-css -- --watch --poll",
"prefix-css": "postcss data-grid.min.css --replace --use autoprefixer && postcss data-grid.css --replace --use autoprefixer",
"build-css": "npm run compile-css && npm run prefix-css",
"build-all": "npm run build && npm run build-css && git add -A && git commit -m \"build files\"",
"build-all-locally": "npm run build && npm run build-css",
"bump": "npm run build-all && npm version patch",
"update-deps": "npx npm-check-updates -u",
"local-server": "php -S localhost:8002 -t demo/"
},
"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": "^6.0.4",
"ava": "^4.3.3",
"esbuild": "^0.15.7"
},
"author": "LeKoala",
"license": "MIT",
"dependencies": {
"autoprefixer": "^10.4.8",
"postcss": "^8.4.16",
"postcss-cli": "^10.0.0",
"sass": "^1.54.9"
}
}