-
Notifications
You must be signed in to change notification settings - Fork 23
/
package.json
49 lines (49 loc) · 1.18 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
{
"name": "chord-transposer",
"version": "3.0.9",
"description": "Transposes musical chords in arbitrary text.",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"dependencies": {
"ts-enums": "^0.0.6",
"xregexp": "^4.4.0"
},
"devDependencies": {
"@types/jasmine": "^3.6.2",
"@types/node": "^12.19.7",
"jasmine": "^3.6.3",
"ts-node": "^8.10.2",
"tslint": "^6.1.3",
"typescript": "^3.9.7",
"typescript-formatter": "^7.2.2"
},
"scripts": {
"build": "npx tslint src/* && tsfmt -r && tsc",
"prepublish": "tsc",
"test": "npm run build && ts-node node_modules/jasmine/bin/jasmine --config=jasmine.json"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ddycai/chord-transposer.git"
},
"keywords": [
"transpose",
"chord",
"music",
"pitch",
"note",
"lyrics",
"tabs"
],
"author": "Duncan Cai",
"license": "MIT",
"bugs": {
"url": "https://github.com/ddycai/chord-transposer/issues"
},
"homepage": "https://github.com/ddycai/chord-transposer#readme",
"exports": {
"require": "./dist/index.js",
"import": "./dist/esm/wrapper.js",
"types": "./dist/index.d.ts"
}
}