-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (46 loc) · 1.1 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
{
"name": "gantt2",
"version": "1.0.7",
"description": "A browser library to draw Gantt charts",
"main": "prod/index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "webpack",
"watch": "rm -rf ./dist && webpack --watch",
"build:prod": "webpack -c npm.webpack.config.js",
"build:docs": "webpack -c gh-page.webpack.config.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/DmitryPorotov/gantt2.git"
},
"files": [
"prod",
"README.md",
"package.json",
"index.ts",
"index.js"
],
"keywords": [
"gantt",
"chart",
"svg",
"browser"
],
"author": "Dmitry Porotov",
"license": "LGPL-2.0-or-later",
"bugs": {
"url": "https://github.com/DmitryPorotov/gantt2/issues"
},
"homepage": "https://github.com/DmitryPorotov/gantt2#readme",
"devDependencies": {
"@types/jest": "^29.5.14",
"html-webpack-plugin": "^5.6.3",
"jest": "^29.7.0",
"ts-jest": "^29.2.5",
"ts-loader": "^9.5.1",
"typescript": "^5.6.3",
"webpack": "^5.96.1",
"webpack-cli": "^5.1.4"
}
}