-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
52 lines (52 loc) · 1.07 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
{
"name": "mscz-parser",
"version": "0.1.0",
"description": "",
"main": "dist/index.js",
"repository": {
"type": "git",
"url": "git+https://github.com/LibreScore/mscz-parser.git"
},
"keywords": [
"musescore",
"mscz",
"scorefile",
"LibreScore"
],
"author": "LibreScore",
"license": "GPL-3.0",
"bugs": {
"url": "https://github.com/LibreScore/mscz-parser/issues"
},
"homepage": "https://github.com/LibreScore/mscz-parser#readme",
"files": [
"dist",
"src",
"tsconfig.json",
".eslintrc"
],
"dependencies": {
"tslib": "^1.11.1"
},
"devDependencies": {
"@types/jest": "^25.1.4",
"@types/node": "^12.12.35",
"jest": "^25.1.0",
"ts-jest": "^25.2.1",
"typescript": "^3.8.3"
},
"jest": {
"preset": "ts-jest",
"testEnvironment": "node",
"verbose": true,
"coveragePathIgnorePatterns": [
"<rootDir>/test/",
"<rootDir>/node_modules/"
]
},
"scripts": {
"build": "tsc -p src",
"watch": "npm run build -- --watch",
"test": "jest --coverage --runInBand"
}
}