-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
executable file
·80 lines (80 loc) · 1.87 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
{
"name": "msklc-parser",
"version": "1.0.0",
"description": "Parse Microsoft Keyboard Layout Creator files",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist",
"src",
"!**/*.json",
"!**/*.test.*"
],
"scripts": {
"clean": "rimraf dist",
"build": "tsc",
"lint": "eslint src/**/*.ts",
"test": "jest",
"prepare": "husky install",
"prepack": "rimraf dist && tsc"
},
"repository": {
"type": "git",
"url": "git+https://github.com/medzuslovjansky/msklc-parser.git"
},
"keywords": [
"keyboard",
"keyboard-layout",
"klc",
"msklc"
],
"authors": [
"Yaroslav Serhieiev <[email protected]>"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/medzuslovjansky/msklc-parser/issues"
},
"homepage": "https://github.com/medzuslovjansky/msklc-parser#readme",
"engines": {
"node": ">=16"
},
"devDependencies": {
"@commitlint/cli": "^11.0.0",
"@commitlint/config-conventional": "^11.0.0",
"@types/jest": "^29.0.0",
"@types/node": "^20.4.9",
"@typescript-eslint/eslint-plugin": "^5.59.8",
"@typescript-eslint/parser": "^5.59.8",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^8.46.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-ecmascript-compat": "^3.0.0",
"eslint-plugin-jsdoc": "^46.4.6",
"eslint-plugin-prefer-arrow": "^1.2.3",
"eslint-plugin-prettier": "^5.0.0",
"husky": "^8.0.3",
"jest": "^29.6.2",
"lint-staged": "^12.5.0",
"prettier": "^3.0.1",
"rimraf": "^5.0.1",
"semantic-release": "^21.0.7",
"ts-jest": "^29.1.1",
"typescript": "^5.1.6"
},
"dependencies": {
"tslib": "^2.6.1"
},
"jest": {
"transform": {
"\\.ts$": "ts-jest"
},
"testPathIgnorePatterns": [
"/node_modules/",
"/dist/"
]
},
"browserslist": [
"node 16"
]
}