-
Notifications
You must be signed in to change notification settings - Fork 190
/
package.json
106 lines (106 loc) · 3.38 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
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
{
"private": true,
"name": "timecat",
"author": "oct16",
"version": "1.2.0-alpha.25",
"description": "TimeCat Web Recorder",
"keywords": [
"recorder",
"replay",
"player",
"virtual-dom",
"screenshots",
"audio",
"video",
"chrome",
"chrome-extension"
],
"license": "GPL-3.0-or-later",
"workspaces": [
"packages/*"
],
"scripts": {
"dev": "node scripts/dev.js",
"build": "node scripts/build.js",
"release": "node scripts/release.js",
"verifycommit": "node scripts/verifyCommit.js",
"postinstall": "husky install",
"preinstall": "$npm_execpath --silent run checkyarn",
"checkyarn": "node ./scripts/checkYarn.js",
"lint": "eslint 'packages/**/*.{js,ts}' --quiet --fix",
"test": "jest --verbose",
"count": "git ls-files --exclude-standard -- ':!:**/*.[pjs][npv]g' ':!:.eslintrc' ':!: examples/*' ':!:.gitignore' ':!:README.*' ':!:LICENSE' ':!:yarn.lock' | xargs wc -l"
},
"lint-staged": {
"*.js": [
"prettier --write"
],
"*.ts?(x)": [
"eslint",
"prettier --parser=typescript --write"
]
},
"engines": {
"node": ">=10.0.0"
},
"devDependencies": {
"@microsoft/api-extractor": "^7.13.1",
"@rollup/plugin-commonjs": "^17.1.0",
"@rollup/plugin-html": "^0.2.3",
"@rollup/plugin-json": "^4.1.0",
"@rollup/plugin-node-resolve": "^11.2.0",
"@rollup/plugin-replace": "^2.3.4",
"@types/diff": "^5.0.0",
"@types/jest": "^26.0.20",
"@types/node": "^14.14.28",
"@types/smoothscroll-polyfill": "^0.3.1",
"@types/tapable": "^1.0.6",
"@typescript-eslint/eslint-plugin": "^4.15.1",
"@typescript-eslint/parser": "^4.15.1",
"@zerollup/ts-transform-paths": "^1.7.18",
"brick.json": "^0.0.6",
"brotli": "^1.3.2",
"browser-sync": "^2.26.14",
"chalk": "^4.1.0",
"core-js-bundle": "^3.9.1",
"diff": "^5.0.0",
"enquirer": "^2.3.6",
"eslint": "^7.20.0",
"eslint-config-prettier": "^7.2.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^3.3.1",
"execa": "^5.0.0",
"fake-indexeddb": "^3.1.2",
"fs-extra": "^9.1.0",
"husky": "^5.0.9",
"is-mobile": "^2.2.2",
"jest": "^26.6.3",
"jest-canvas-mock": "^2.3.1",
"jest-webgl-canvas-mock": "^0.2.3",
"koa": "^2.13.1",
"lint-staged": "^10.5.4",
"minimist": "^1.2.5",
"prettier": "^2.2.1",
"regenerator-runtime": "^0.13.7",
"rollup": "^2.39.0",
"rollup-plugin-node-polyfills": "^0.2.1",
"rollup-plugin-scss": "^2.6.1",
"rollup-plugin-string": "^3.0.0",
"rollup-plugin-terser": "^7.0.2",
"rollup-plugin-typescript2": "^0.29.0",
"rollup-plugin-visualizer": "^4.2.0",
"semver": "^7.3.4",
"smoothscroll-polyfill": "^0.4.4",
"tapable": "^1.1.3",
"ts-jest": "^26.5.1",
"typescript": "^4.1.5"
},
"repository": {
"type": "git",
"url": "git+https://github.com/oct16/TimeCat.git"
},
"bugs": {
"url": "https://github.com/oct16/TimeCat/issues"
},
"homepage": "https://github.com/oct16/TimeCat#readme"
}