-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
130 lines (130 loc) · 3.44 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
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
{
"name": "glenn",
"version": "0.0.40",
"description": "Module for working with music theory concepts",
"author": "Pedro Moreira Santos",
"homepage": "https://github.com/pedromsantos/glenn",
"keywords": [
"music",
"notation",
"theory",
"music theory",
"guitar",
"tab",
"tablature",
"abc"
],
"license": "MIT",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"module": "./dist/index.mjs",
"publishConfig": {
"access": "public"
},
"files": [
"dist",
"License.md",
"README.md",
"package.json"
],
"exports": {
"./package.json": "./package.json",
".": {
"require": "./dist/index.js",
"import": "./dist/index.mjs",
"node": "./dist/index.js",
"default": "./dist/index.js"
}
},
"repository": {
"type": "git",
"url": "[email protected]:pedromsantos/glenn.git"
},
"bugs": {
"url": "https://github.com/pedromsantos/glenn/issues"
},
"scripts": {
"check_exports": "check-export-map",
"watch": "jest --watch",
"test": "jest --no-cache --runInBand",
"precommit": "npm-run-all -p lint types test:ci check_exports",
"ci": "npm-run-all -p lint types test:ci",
"test:ci": "jest --coverage --no-cache --runInBand",
"mutants": "stryker run",
"build": "tsup",
"lint": "eslint . --color --ext .ts --ignore-pattern 'node_modules/'",
"lint:fix": "eslint . --ext .ts --ignore-pattern 'node_modules/' --fix",
"types": "type-coverage -at-least 99",
"prepare": "husky install",
"clean": "rm -rf .cache .tmp .turbo coverage coverage-ts dist reports"
},
"devDependencies": {
"@babel/helper-function-name": "^7.24.7",
"@babel/helper-environment-visitor": "^7.24.7",
"@babel/helper-hoist-variables": "^7.24.7",
"@babel/helper-split-export-declaration": "^7.24.7",
"@changesets/cli": "^2.26.2",
"@commitlint/cli": "^19.0.1",
"@commitlint/config-conventional": "^19.0.0",
"@stryker-mutator/core": "^8.6.0",
"@stryker-mutator/jest-runner": "^8.6.0",
"@stryker-mutator/typescript-checker": "^8.6.0",
"@swc/core": "^1.7.35",
"@swc/jest": "^0.2.36",
"@types/jest": "^29.5.10",
"@typescript-eslint/eslint-plugin": "^7.0.0",
"@typescript-eslint/parser": "^7.1.0",
"check-export-map": "^1.3.1",
"eslint": "^8.54.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-hexagonal-architecture": "^1.0.3",
"eslint-plugin-import": "^2.29.0",
"eslint-plugin-jest": "^28.2.0",
"eslint-plugin-prettier": "5.2.1",
"eslint-plugin-simple-import-sort": "^12.0.0",
"eslint-plugin-sonarjs": "^3.0.0",
"fast-check": "^3.14.0",
"husky": "^9.0.5",
"jest": "^29.7.0",
"npm-run-all": "^4.1.5",
"prettier": "^3.3.0",
"standard-version": "^9.5.0",
"ts-coverage": "^0.1.5",
"ts-jest": "^29.1.1",
"tsup": "^8.0.2",
"tsx": "^4.15.1",
"type-coverage": "^2.29.0",
"typescript": "^5.6.3"
},
"engines": {
"node": ">=22"
},
"packageManager": "[email protected]",
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"lint-staged": {
"**/*.ts": "prettier --write --ignore-unknown"
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
],
"rules": {
"subject-case": [
2,
"never",
[
"start-case",
"pascal-case"
]
]
}
},
"typeCoverage": {
"atLeast": 99
},
"dependencies": {}
}