-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
50 lines (50 loc) · 1.44 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": "svelte-grid-2022",
"version": "2.2.0",
"description": "A responsive, draggable and resizable grid layout, for Svelte.",
"svelte": "src/index.svelte",
"module": "build/index.mjs",
"main": "build/index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"lint": "eslint .",
"pretty": "prettier --config .prettierrc --write --svelte-sort-order styles-markup-scripts \"rollup.config.js\" \"package.json\" \"src/**/*.js\" \"www/src/**/**/*.svelte\" \"*.md\" \"src/*.svelte\" \"src/**/*.svelte\" ",
"build": "node_modules/.bin/rollup -c",
"go": "npm-run-all pretty build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/vaheqelyan/svelte-grid.git"
},
"keywords": [
"svelte",
"grid",
"drag",
"draggable",
"resize",
"resizable",
"fluid",
"responsive"
],
"author": "Vahe Araqelyan <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/vaheqelyan/svelte-grid/issues"
},
"homepage": "https://github.com/vaheqelyan/svelte-grid#readme",
"devDependencies": {
"@rollup/plugin-commonjs": "^17.0.0",
"eslint": "^7.13.0",
"npm-run-all": "^4.1.5",
"prettier": "^2.2.0",
"prettier-plugin-svelte": "^1.4.1",
"rollup": "^2.33.3",
"rollup-plugin-node-resolve": "^5.2.0",
"rollup-plugin-svelte": "^6.1.1",
"svelte": "^3.30.0"
},
"files": [
"src",
"build"
]
}