-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.37 KB
/
package.json
File metadata and controls
51 lines (51 loc) · 1.37 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
{
"name": "fast-grid-layout",
"version": "0.1.0",
"description": "Fast editable grid layout system similar to React Grid Layout",
"keywords": [
"react",
"grid",
"layout",
"vanilla"
],
"author": "Morris Brodersen <mb@morrisbrodersen.de>",
"license": "ISC",
"homepage": "https://github.com/morris/fast-grid-layout#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/morris/fast-grid-layout.git"
},
"bugs": {
"url": "https://github.com/morris/fast-grid-layout/issues"
},
"files": [
"dist"
],
"type": "module",
"main": "dist/fast-grid-layout.js",
"scripts": {
"build": "bash scripts/build.sh",
"clean": "rm -rf coverage dist test-results",
"dev": "bash scripts/dev.sh",
"format": "prettier --write .",
"format-check": "prettier --check .",
"lint": "eslint .",
"test": "bash scripts/test.sh --project Chromium",
"test-coverage": "bash scripts/test-coverage.sh --project Chromium",
"test-e2e": "bash scripts/test.sh",
"test-ui": "playwright test --ui"
},
"devDependencies": {
"@eslint/js": "^9.9.1",
"@playwright/test": "^1.21.1",
"@types/node": "^24.3.0",
"c8": "^10.1.2",
"eslint": "^9.9.1",
"prettier": "^3.3.2",
"s4d": "^0.2.2",
"sass": "^1.90.0",
"terser": "^5.31.6",
"typescript": "^5.0.4",
"typescript-eslint": "^8.2.0"
}
}