forked from oct16/TimeCat
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
113 lines (113 loc) · 3.58 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
107
108
109
110
111
112
113
{
"private": true,
"name": "timecat",
"author": "oct16",
"version": "1.2.0-alpha.15",
"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",
"preinstall": "$npm_execpath --silent run checkyarn",
"checkyarn": "node ./scripts/checkYarn.js",
"ls-lint": "ls-lint",
"lint": "eslint 'packages/**/*.{js,ts}' --quiet --fix",
"test": "jest",
"live": "node scripts/live.js",
"embed": "cp packages/timecat/dist/timecat.global.prod.js ../TimeCatChrome/src/assets/",
"gh": "node scripts/gh.js",
"count": "git ls-files --exclude-standard -- ':!:**/*.[pjs][npv]g' ':!:.eslintrc' ':!: examples/*' ':!:.gitignore' ':!:README.*' ':!:LICENSE' ':!:yarn.lock' | xargs wc -l"
},
"husky": {
"hooks": {
"pre-commit": "ls-lint && lint-staged",
"commit-msg": "node ./scripts/verifyCommit.js"
}
},
"lint-staged": {
"*.js": [
"prettier --write"
],
"*.ts?(x)": [
"eslint",
"prettier --parser=typescript --write"
]
},
"engines": {
"node": ">=10.0.0"
},
"devDependencies": {
"@ls-lint/ls-lint": "^1.9.2",
"@microsoft/api-extractor": "^7.9.13",
"@rollup/plugin-commonjs": "^11.0.2",
"@rollup/plugin-html": "^0.2.0",
"@rollup/plugin-json": "^4.1.0",
"@rollup/plugin-node-resolve": "^7.1.3",
"@rollup/plugin-replace": "^2.3.1",
"@types/diff": "^4.0.2",
"@types/fingerprintjs2": "^2.0.0",
"@types/jest": "^26.0.0",
"@types/node": "^13.9.2",
"@types/pako": "^1.0.1",
"@types/smoothscroll-polyfill": "^0.3.1",
"@types/tapable": "^1.0.6",
"@typescript-eslint/eslint-plugin": "^3.9.0",
"@typescript-eslint/parser": "^3.9.0",
"@zerollup/ts-transform-paths": "^1.7.17",
"brotli": "^1.3.2",
"browser-sync": "^2.26.12",
"chalk": "^4.1.0",
"diff": "^4.0.2",
"enquirer": "^2.3.6",
"eslint": "^7.6.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^3.1.4",
"execa": "^4.0.0",
"fingerprintjs2": "^2.1.2",
"fs-extra": "^8.1.0",
"husky": "^4.2.5",
"jest": "^26.0.1",
"koa": "^2.13.0",
"lint-staged": "^10.2.11",
"minimist": "^1.2.5",
"pako": "^1.0.11",
"prettier": "^2.0.5",
"rollup": "^2.26.10",
"rollup-plugin-node-polyfills": "^0.2.1",
"rollup-plugin-scss": "^2.5.0",
"rollup-plugin-string": "^3.0.0",
"rollup-plugin-terser": "^7.0.0",
"rollup-plugin-typescript2": "^0.26.0",
"rollup-plugin-visualizer": "^4.0.4",
"semver": "^7.3.2",
"smoothscroll-polyfill": "^0.4.4",
"tapable": "^1.1.3",
"ts-jest": "^26.1.0",
"typescript": "^3.9.7",
"fake-indexeddb": "3.1.2"
},
"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"
}