-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
48 lines (48 loc) · 1.21 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
{
"name": "@fabiohvp/svelte-gantt",
"svelte": "src/index.svelte",
"module": "index.mjs",
"main": "index.js",
"scripts": {
"build": "rollup -c",
"build:watch": "rollup -cw",
"http-server": "http-server",
"dev": "start yarn build:watch && start yarn http-server",
"prepublishOnly": "npm run build"
},
"devDependencies": {
"@fullhuman/postcss-purgecss": "^2.1.2",
"autoprefixer": "^9.7.6",
"http-server": "^0.12.1",
"postcss-import": "^12.0.1",
"postcss-url": "^8.0.0",
"rollup": "^1.11.0",
"rollup-plugin-node-resolve": "^4.0.0",
"rollup-plugin-postcss": "^3.1.1",
"rollup-plugin-svelte": "^5.0.0",
"svelte": "^3.21.0",
"tailwindcss": "^1.3.5"
},
"keywords": [
"svelte",
"gantt"
],
"files": [
"src",
"index.mjs",
"index.js"
],
"description": "Gantt component made with svelte",
"version": "1.0.0",
"dependencies": {},
"repository": {
"type": "git",
"url": "git+https://github.com/fabiohvp/svelte-gantt.git"
},
"author": "https://github.com/fabiohvp",
"license": "MIT",
"bugs": {
"url": "https://github.com/fabiohvp/svelte-gantt/issues"
},
"homepage": "https://github.com/fabiohvp/svelte-gantt#readme"
}