-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
82 lines (82 loc) · 2.73 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
75
76
77
78
79
80
81
82
{
"name": "@fschopp/gantt-for-you-track",
"version": "0.2.0-SNAPSHOT",
"description": "Gantt charts for YouTrack. Web app that builds a Gantt chart from the issues in a YouTrack saved search. Includes both the past (reconstructed from activity log) and the future (computed from issue metadata).",
"keywords": [
"Gantt",
"YouTrack",
"project planning",
"scheduling"
],
"author": "Florian Schoppmann <[email protected]> (https://florian-schoppmann.net)",
"license": "GPL-2.0",
"publishConfig": {
"access": "public"
},
"main": "src/main/index.ts",
"repository": {
"type": "git",
"url": "https://github.com/fschopp/gantt-for-you-track.git"
},
"homepage": "https://github.com/fschopp/gantt-for-you-track",
"bugs": {
"url": "https://github.com/fschopp/gantt-for-you-track/issues"
},
"files": [
"/src/css",
"/src/html",
"/src/main"
],
"scripts": {
"clean": "rm -rf dist/ target/",
"lint": "tslint --format verbose --project .",
"test": "jest",
"test:coverage": "npm run test -- --collect-coverage",
"compile": "tsc && tsc -p src/scripts/ && node target/scripts/surplus-compiler.js target/main/*.jsx",
"doc": "typedoc",
"run": "parcel serve --cache-dir target/parcel-cache --out-dir target/run --public-url /gantt-for-you-track/ src/html/index.html",
"site": "parcel build --cache-dir target/parcel-cache --out-dir target/site --public-url /gantt-for-you-track/ src/html/index.html",
"package": "npm run clean && npm run lint && npm run test:coverage && npm run compile && npm run doc && npm run site && src/scripts/gh_pages.sh"
},
"browserslist": [
"defaults"
],
"engines": {
"node": ">=10.0.0"
},
"dependencies": {
"@fschopp/project-planning-for-you-track": "fschopp/project-planning-for-you-track#76fee91ba1dec7fb34a6b1831c122cae69d15ff2",
"@fschopp/project-planning-ui-for-you-track": "fschopp/project-planning-ui-for-you-track#9defa29657224d7357085f42090950ac9c6fac18",
"dhtmlx-gantt": "^6.2.0",
"s-js": "^0.4.9",
"surplus": "^0.5.3",
"surplus-mixin-data": "^0.5.0"
},
"devDependencies": {
"@babel/core": "^7.5.5",
"@babel/preset-env": "^7.5.5",
"@types/jest": "^24.0.16",
"@types/node": "^12.6.8",
"babel-plugin-unassert": "^3.0.1",
"jest": "^24.8.0",
"parcel-bundler": "^1.12.3",
"regenerator-runtime": "^0.13.3",
"source-map": "^0.7.3",
"ts-jest": "^24.0.2",
"tslint": "^5.18.0",
"typedoc": "^0.15.0",
"typescript": "^3.5.3"
},
"jest": {
"collectCoverageFrom": [
"**/src/main/**/*.ts"
],
"coverageDirectory": "target/coverage",
"testMatch": [
"**/src/spec/**/*.spec.ts"
],
"transform": {
"^.+\\.tsx?$": "ts-jest"
}
}
}