-
Notifications
You must be signed in to change notification settings - Fork 1.1k
/
package.json
executable file
·59 lines (59 loc) · 1.54 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
51
52
53
54
55
56
57
58
59
{
"name": "frappe-gantt",
"version": "0.8.1",
"description": "A simple, modern, interactive gantt library for the web",
"main": "src/index.js",
"type": "module",
"scripts": {
"start": "yarn run dev",
"dev": "vite",
"build-dev": "vite build --watch",
"build": "vite build",
"test": "jest",
"lint": "eslint src/**/*.js",
"test:watch": "jest --watch",
"prettier": "prettier --write \"{src/*,tests/*,rollup.config}.js\"",
"prettier-check": "prettier --check \"{src/*,tests/*,rollup.config}.js\""
},
"repository": {
"type": "git",
"url": "git+https://github.com/frappe/gantt.git"
},
"files": [
"src",
"dist",
"README.md"
],
"exports": {
".": {
"require": "./dist/frappe-gantt.umd.js"
}
},
"keywords": [
"gantt",
"svg",
"simple gantt",
"project timeline",
"interactive gantt",
"project management"
],
"author": "Faris Ansari",
"license": "MIT",
"bugs": {
"url": "https://github.com/frappe/gantt/issues"
},
"homepage": "https://github.com/frappe/gantt",
"devDependencies": {
"eslint": "^4.17.0",
"eslint-config-prettier": "^2.9.0",
"eslint-plugin-prettier": "^2.6.0",
"jest": "^22.2.1",
"postcss-nesting": "^12.1.2",
"prettier": "3.2.5",
"vite": "^5.2.10"
},
"eslintIgnore": [
"dist"
],
"packageManager": "yarn@1.22.22"
}