-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
74 lines (74 loc) · 2.26 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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
{
"name": "simple-gantt-chart",
"version": "0.0.5",
"author": "Dieter Oberkofler <[email protected]>",
"license": "MIT",
"description": "Very simple vanilla JavaScript library for displaying projects as Gantt Charts.",
"keywords": [
"simple-gantt-chart",
"gantt chart",
"gantt-chart",
"gantt",
"chart",
"html",
"javascript",
"typescript"
],
"homepage": "https://github.com/doberkofler/simple-gantt-chart",
"engines": {
"node": ">=10"
},
"maintainers": [
{
"name": "Dieter Oberkofler",
"email": "[email protected]"
}
],
"bugs": {
"url": "https://github.com/doberkofler/simple-gantt-chart/issues"
},
"repository": {
"type": "git",
"url": "git://github.com/doberkofler/simple-gantt-chart.git"
},
"scripts": {
"lint": "eslint --report-unused-disable-directives \"./src/**/*.ts\" && tsc --noEmit --project ./tsconfig.json && stylelint \"src/**/*.css\"",
"build": "rimraf dist && webpack --progress --mode=production",
"generate-types": "tsc --project ./tsconfig.declaration.json",
"watch": "webpack --watch --progress --mode=development",
"create-package": "npm run lint && npm run build && npm pack",
"test": "jest --coverage",
"rebuild": "npm run lint && npm run build && npm test"
},
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"devDependencies": {
"@types/jest": "^25.1.4",
"@types/uuid": "^7.0.2",
"@typescript-eslint/eslint-plugin": "^2.26.0",
"@typescript-eslint/parser": "^2.26.0",
"copy-webpack-plugin": "^5.1.1",
"date-fns": "^2.11.1",
"eslint": "^6.8.0",
"eslint-import-resolver-ts": "^0.4.2",
"eslint-import-resolver-webpack": "^0.12.1",
"eslint-plugin-import": "^2.20.2",
"eslint-plugin-jest": "^23.8.2",
"eslint-plugin-jsdoc": "^22.1.0",
"eslint-plugin-promise": "^4.2.1",
"ifdef-loader": "^2.1.5",
"jest": "^25.2.4",
"rimraf": "^3.0.2",
"scrollbar-size": "^2.1.0",
"stylelint": "^13.2.1",
"stylelint-config-standard": "^20.0.0",
"terser-webpack-plugin": "^2.3.5",
"ts-jest": "^25.3.0",
"ts-loader": "^6.2.2",
"tslib": "^1.11.1",
"typescript": "^3.8.3",
"uuid": "^7.0.3",
"webpack": "^4.42.1",
"webpack-cli": "^3.3.11"
}
}