forked from vaheqelyan/svelte-grid
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
49 lines (49 loc) · 1.43 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
{
"name": "svelte-grid",
"version": "2.3.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\" \".eslintrc\" \"package.json\" \"src/**/*.js\" \"www/src/*.svelte\" \"www/src/**/**/*.svelte\" \"*.md\" \"src/*.svelte\" \"src/**/*.svelte\" ",
"build": "node_modules/.bin/rollup -c",
"go": "npm-run-all pretty lint 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": {
"eslint": "^6.8.0",
"npm-run-all": "^4.1.5",
"prettier": "^1.19.1",
"prettier-plugin-svelte": "^0.7.0",
"rollup": "^1.32.1",
"rollup-plugin-node-resolve": "^5.2.0",
"rollup-plugin-svelte": "^5.2.3",
"svelte": "^3.29.4"
},
"files": [
"src",
"build"
]
}