-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
90 lines (90 loc) · 3.25 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
83
84
85
86
87
88
89
90
{
"name": "@fschopp/project-planning-ui-for-you-track",
"version": "0.3.0-SNAPSHOT",
"description": "User-interface framework facilitating “external plugins” for YouTrack. Allows easy embedding of widgets such as a Gantt chart for visualizing project schedules created from YouTrack saved searches.",
"keywords": [
"Gantt",
"YouTrack",
"project planning",
"scheduling",
"user interface"
],
"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-ui-for-you-track.git"
},
"homepage": "https://github.com/fschopp/project-planning-ui-for-you-track",
"bugs": {
"url": "https://github.com/fschopp/project-planning-ui-for-you-track/issues"
},
"files": [
"/dist",
"/src/main"
],
"scripts": {
"prepare": "npm run compile && rollup -c && (cd target/main ; find . -name '*.ts.map' -o -name '*.ts' | xargs tar cf -) | (cd dist/es6 ; tar xf -) && find dist -name '*.map' | xargs node target/scripts/clean-sourcemap.js",
"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/demo/*.jsx target/main/components/*.jsx target/main/components/*/*.jsx",
"doc": "typedoc",
"demo": "parcel serve --cache-dir target/parcel-cache --out-dir target/parcel --public-url /project-planning-ui-for-you-track/ src/demo/index.html",
"demo:build": "parcel build --cache-dir target/parcel-cache --out-dir target/parcel --public-url /project-planning-ui-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-for-you-track": "fschopp/project-planning-for-you-track#76fee91ba1dec7fb34a6b1831c122cae69d15ff2",
"s-array": "^0.4.10",
"s-js": "^0.4.9",
"sortablejs": "^1.9.0",
"surplus": "^0.5.3"
},
"devDependencies": {
"@babel/core": "^7.5.5",
"@babel/preset-env": "^7.5.5",
"@types/jest": "^24.0.16",
"@types/sortablejs": "^1.7.2",
"babel-plugin-unassert": "^3.0.1",
"jest": "^24.8.0",
"parcel-bundler": "^1.12.3",
"postcss-import": "^12.0.1",
"regenerator-runtime": "^0.13.3",
"rollup": "^1.18.0",
"rollup-plugin-babel": "^4.3.3",
"rollup-plugin-postcss": "^2.0.3",
"rollup-plugin-sourcemaps": "^0.4.2",
"rollup-plugin-terser": "^5.1.1",
"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?(x)"
],
"transform": {
"^.+\\.tsx?$": "ts-jest"
}
}
}