-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
103 lines (103 loc) · 2.7 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
{
"name": "openlyrics-parser",
"version": "1.1.6",
"description": "Parses and extracts data from OpenLyrics files, and creates them!",
"main": "dist/main/index.js",
"typings": "dist/main/index.d.ts",
"module": "dist/module/index.js",
"homepage": "https://github.com/ChrisMBarr/OpenLyrics-parser#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/ChrisMBarr/OpenLyrics-parser.git"
},
"bugs": {
"url": "https://github.com/ChrisMBarr/OpenLyrics-parser/issues"
},
"keywords": [
"church",
"lyrics",
"song",
"openlyrics"
],
"files": [
"dist/main",
"dist/module",
"docs/**/**",
"!**/*.spec.*",
"!**/*.json",
"!**/*.tsbuildinfo",
"!**/*.xml.model.d.ts",
"!**/version.d.ts",
"LICENSE",
"README.md"
],
"prettier": {
"singleQuote": true,
"printWidth": 100
},
"license": "MIT",
"jest": {
"moduleDirectories": [
"<rootDir>/../",
"node_modules"
],
"moduleFileExtensions": [
"js",
"json",
"ts"
],
"preset": "ts-jest",
"reporters": [
"default",
"jest-html-reporter"
],
"rootDir": "./src",
"testEnvironment": "node",
"transform": {
"^.+\\.ts$": [
"ts-jest",
{
"tsconfig": "tsconfig.json"
}
]
}
},
"jest-html-reporter": {
"includeConsoleLog": true,
"includeFailureMsg": true,
"includeStackTrace": false
},
"scripts": {
"build": "npm run clean && npm run genversion && npm run lint && npm run test:coverage && npm run build:main && npm run build:module",
"build:main": "tsc -p tsconfig.json",
"build:module": "tsc -p tsconfig.module.json",
"clean": "rimraf dist coverage test-report.html",
"genversion": "npx genversion src/version.ts --es6 --semi",
"lint": "eslint --fix .",
"test": "jest --reporters=default",
"test:html": "jest --reporters=jest-html-reporter --verbose=false",
"test:coverage": "jest --coverage --coverageDirectory=../coverage",
"update": "ncu -u && npm i",
"watch:build": "tsc -p tsconfig.json -w",
"watch:test": "jest --watch --reporters=default",
"watch:test:html": "jest --watch --reporters=jest-html-reporter --verbose=false"
},
"dependencies": {
"fast-xml-parser": "^4.5.0"
},
"devDependencies": {
"@eslint/js": "^9.16.0",
"@types/eslint__js": "^8.42.3",
"@types/jest": "^29.5.14",
"@types/node": "^22.10.1",
"eslint-plugin-simple-import-sort": "^12.1.1",
"eslint": "^9.16.0",
"genversion": "^3.2.0",
"jest-html-reporter": "^3.10.2",
"jest": "^29.7.0",
"ts-jest": "^29.2.5",
"ts-node": "^10.9.2",
"typescript-eslint": "^8.17.0",
"typescript": "^5.7.2"
}
}