-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
74 lines (74 loc) · 2.19 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
{
"name": "@sofie-automation/sorensen",
"version": "1.5.8",
"description": "A modern, i18n-friendly hotkey library for the Web",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist",
"README.md",
"CHANGELOG.md"
],
"author": "Jan Starzak <[email protected]>",
"repository": {
"type": "git",
"url": "git+https://github.com/nrkno/sorensen.git"
},
"bugs": {
"url": "https://github.com/nrkno/sorensen/issues"
},
"homepage": "https://nrkno.github.io/sorensen/",
"license": "MIT",
"keywords": [
"keyboard",
"browser",
"shortcuts",
"combo",
"hotkey",
"user interface",
"keyboard api",
"web platform",
"i18n",
"keyboard layout"
],
"scripts": {
"start": "webpack serve --env dev",
"build": "rimraf dist && yarn build:main",
"build:main": "tsc -p tsconfig.build.json",
"docs": "yarn typedoc",
"lint": "eslint . --ext .ts --ext .js --ext .tsx --ext .jsx --ignore-pattern dist",
"lint-fix": "yarn lint --fix",
"format": "prettier --write --config \"./.prettierrc.json\" \"src/**\"",
"license-validate": "yarn sofie-licensecheck",
"validate:dependencies": "yarn audit --groups dependencies && yarn license-validate",
"validate:dev-dependencies": "yarn audit --groups devDependencies",
"test": "jest",
"ci": "jest --runInBand",
"release": "standard-version --commit-all",
"changelog": "yarn release --prerelease"
},
"devDependencies": {
"@sofie-automation/code-standard-preset": "^0.4.2",
"@types/expect-puppeteer": "^4.4.6",
"@types/jest": "^26.0.24",
"@types/jest-environment-puppeteer": "^4.4.1",
"@types/node": "^14.0.0",
"concurrently": "^6.2.0",
"expect-puppeteer": "^10.1.2",
"jest": "^29.7.0",
"jest-puppeteer": "^10.1.2",
"puppeteer": "^23.6.0",
"rimraf": "^3.0.2",
"standard-version": "^9.3.1",
"ts-jest": "^29.2.5",
"ts-loader": "9.5.1",
"typedoc": "^0.26.10",
"typescript": "5.6.3",
"webpack": "^5.95.0",
"webpack-cli": "5.1.4",
"webpack-dev-server": "5.1.0",
"yargs": "^17.0.1"
},
"prettier": "@sofie-automation/code-standard-preset/.prettierrc.json",
"packageManager": "[email protected]"
}