-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
82 lines (82 loc) · 2.72 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/project-planning-for-you-track",
"version": "0.9.3-SNAPSHOT",
"description": "Library for project planning from YouTrack data. Retrieve past project schedule from activity log, and compute future schedule from unresolved issues and the available contributors.",
"keywords": [
"Gantt",
"YouTrack",
"project planning",
"scheduling"
],
"author": "Florian Schoppmann <[email protected]> (https://florian-schoppmann.net)",
"license": "Apache-2.0",
"publishConfig": {
"access": "public"
},
"main": "dist/index.js",
"module": "dist/es6/index.js",
"types": "dist/es6/index.d.ts",
"repository": {
"type": "git",
"url": "https://github.com/fschopp/project-planning-for-you-track.git"
},
"homepage": "https://github.com/fschopp/project-planning-for-you-track",
"bugs": {
"url": "https://github.com/fschopp/project-planning-for-you-track/issues"
},
"files": [
"/dist",
"/src/main"
],
"scripts": {
"clean": "rm -rf dist/ target/",
"lint": "tslint --format verbose --project .",
"test": "jest",
"test:coverage": "npm run test -- --collect-coverage",
"prepare": "tsc && rollup -c && cp target/js/*.d.ts target/js/*.d.ts.map dist/es6/ && tsc -p src/scripts/ && node target/scripts/clean-sourcemap.js dist/*.map dist/es6/*.map",
"doc": "typedoc",
"demo": "parcel serve --cache-dir target/parcel-cache --out-dir target/demo --public-url /project-planning-for-you-track/ src/demo/index.html",
"demo:build": "parcel build --cache-dir target/parcel-cache --out-dir target/demo --public-url /project-planning-for-you-track/ src/demo/index.html",
"package": "npm run clean && npm run lint && npm run test:coverage && npm run prepare && npm run doc && npm run demo:build && src/scripts/gh_pages.sh"
},
"browserslist": [
"defaults"
],
"engines": {
"node": ">=10.0.0"
},
"dependencies": {
"@fschopp/project-planning-js": "^1.1.2"
},
"devDependencies": {
"@babel/core": "^7.5.5",
"@babel/preset-env": "^7.5.5",
"@types/jest": "^24.0.16",
"@types/jsdom": "^12.2.4",
"babel-plugin-unassert": "^3.0.1",
"jest": "^24.8.0",
"jsdom": "^15.1.1",
"parcel-bundler": "^1.12.3",
"regenerator-runtime": "^0.13.3",
"rollup": "^1.18.0",
"rollup-plugin-babel": "^4.3.3",
"rollup-plugin-sourcemaps": "^0.4.2",
"rollup-plugin-terser": "^5.1.1",
"ts-jest": "^24.0.2",
"tslint": "^5.18.0",
"typedoc": "^0.15.0",
"typescript": "^3.5.3"
},
"jest": {
"collectCoverageFrom": [
"**/src/main/**/*.ts?(x)"
],
"coverageDirectory": "target/coverage",
"testMatch": [
"**/src/spec/**/*.spec.ts?(x)"
],
"transform": {
"^.+\\.tsx?$": "ts-jest"
}
}
}