-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 1.18 KB
/
package.json
File metadata and controls
39 lines (39 loc) · 1.18 KB
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
{
"name": "chordproject-parser",
"version": "1.0.4",
"main": "dist/chordproject-parser.bundle.js",
"typings": "types/index.d.ts",
"files": [
"dist",
"types",
"src/style.css"
],
"description": "A TypeScript library for parsing and formatting ChordPro songs.",
"keywords": [
"chordpro",
"chordproject",
"parser",
"chord",
"guitar"
],
"scripts": {
"start": "webpack serve --config webpack.dev.js",
"build": "rimraf types && tsc && webpack --config webpack.prod.js",
"release": "npm run build && npm publish",
"test": "npx jest --runInBand --detectOpenHandles --colors --verbose --reporters=default",
"test:ci": "npx jest --ci --runInBand --silent --colors --coverage"
},
"devDependencies": {
"@types/jest": "^29.5.14",
"@types/node": "^24.0.1",
"html-webpack-plugin": "^5.6.3",
"jest": "^30.0.0",
"rimraf": "^6.0.1",
"ts-jest": "^29.4.0",
"ts-loader": "^9.5.2",
"typescript": "^5.8.3",
"webpack": "^5.99.9",
"webpack-cli": "^6.0.1",
"webpack-dev-server": "^5.2.2"
}
}