-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
87 lines (87 loc) · 2.48 KB
/
package.json
File metadata and controls
87 lines (87 loc) · 2.48 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
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
{
"name": "@stringsync/musicxml",
"version": "0.3.0",
"private": false,
"description": "a simple musicXML library",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist/**/*"
],
"keywords": [
"musicxml"
],
"repository": "git@github.com:stringsync/musicxml.git",
"author": "Jared Johnson <jared@jaredjohnson.dev>",
"license": "MIT",
"dependencies": {
"xml-js": "1.6.11"
},
"devDependencies": {
"@babel/core": "7.16.5",
"@babel/plugin-proposal-class-properties": "7.16.5",
"@babel/plugin-proposal-decorators": "7.16.5",
"@babel/preset-env": "7.16.5",
"@babel/preset-typescript": "7.16.5",
"@prettier/plugin-xml": "3.2.2",
"@types/jest": "27.0.3",
"@types/node-fetch": "2.5.12",
"@typescript-eslint/eslint-plugin": "6.11.0",
"@typescript-eslint/parser": "6.11.0",
"babel-jest": "27.4.5",
"concurrently": "^8.2.2",
"eslint": "8.54.0",
"eslint-config-prettier": "8.3.0",
"eslint-config-standard-with-typescript": "21.0.1",
"eslint-plugin-import": "2.25.3",
"eslint-plugin-jest": "25.3.0",
"eslint-plugin-node": "11.1.0",
"eslint-plugin-promise": "5.2.0",
"husky": "7.0.4",
"jest": "27.4.5",
"jest-diff": "27.5.1",
"jest-extended": "1.2.0",
"lint-staged": "12.1.2",
"node-fetch": "2.6.6",
"prettier": "3.1.0",
"prettier-plugin-organize-imports": "2.3.4",
"serve": "^14.2.1",
"ts-node": "10.4.0",
"typedoc": "^0.25.3",
"typescript": "^5.2.2"
},
"scripts": {
"build": "tsc --project tsconfig.build.json",
"generate": "ts-node src/scripts/generate.ts",
"posttest": "docker compose down",
"prepare": "husky install",
"prepublishOnly": "yarn build",
"pretest": "docker compose build",
"test": "docker compose run --rm test yarn jest",
"docs": "typedoc --tsconfig tsconfig.docs.json",
"docs:dev": "concurrently 'typedoc --tsconfig tsconfig.docs.json --watch --preserveWatchOutput' 'serve ./docs'"
},
"lint-staged": {
"src/**/*": [
"bash -c \"yarn tsc --noEmit\"",
"eslint",
"prettier --write --ignore-unknown"
]
},
"jest": {
"testEnvironment": "node",
"setupFilesAfterEnv": [
"jest-extended/all",
"<rootDir>/src/testing/jest.setup.ts"
],
"collectCoverageFrom": [
"src/**/*.ts",
"!src/lib/errors/**",
"!src/lib/schema/**",
"!src/lib/elements/**",
"!src/lib/dataTypes/**",
"!src/scripts/**",
"!src/testing/**"
]
}
}