-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
48 lines (48 loc) · 1.29 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
{
"name": "chords-transposer",
"version": "0.3.1",
"description": "The Chord Transposer is a TypeScript/JavaScript library designed to manipulate and transpose chords within text-based songs.",
"main": "lib/index.ts",
"repository": "Open-SL/Chords-Transposer",
"homepage": "https://open-sl.github.io/Chords-Transposer/",
"files": [
"dist"
],
"scripts": {
"build": "tsc",
"rollup": "rollup -c",
"start": "tsc -w",
"test": "jest",
"ci": "tsc && rollup -c",
"copy": "mkdir -p build && cp ./dist/chords-transposer.min.js* build/ && cp -r ./public/* build/"
},
"author": "nadun1indunil@gmail.com",
"license": "MIT",
"devDependencies": {
"@rollup/plugin-node-resolve": "^15.2.3",
"@rollup/plugin-terser": "^0.4.4",
"@types/jest": "^29.5.11",
"@typescript-eslint/eslint-plugin": "^6.13.1",
"@typescript-eslint/parser": "^6.13.1",
"eslint": "^8.55.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.0.1",
"husky": "^8.0.3",
"jest": "^29.7.0",
"prettier": "^3.1.0",
"rollup": "^4.9.0",
"ts-jest": "^29.1.1",
"typescript": "^5.3.2"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.ts": [
"eslint --fix",
"prettier --write"
]
}
}