-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
91 lines (91 loc) · 2 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
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
88
89
90
91
{
"name": "@tonejs/midi",
"version": "2.0.0",
"description": "Convert binary midi into JSON",
"main": "build/Midi.js",
"module": "dist/Midi.js",
"jsnext:main": "dist/Midi.js",
"types": "dist/Midi.d.ts",
"scripts": {
"build": "tsc && webpack -p --mode=production",
"codecov": "nyc report --reporter=text-lcov > coverage.lcov && codecov",
"docs": "typedoc",
"increment": "node scripts/increment_version.js",
"lint": "eslint --ext ts ./src",
"lint:fix": "npm run lint -- --fix",
"watch": "webpack -w --mode=development",
"test": "nyc mocha --timeout=10000 --require ts-node/register ./test/*.ts"
},
"files": [
"build",
"dist",
"src",
"LICENSE.md",
"README.md"
],
"repository": {
"type": "git",
"url": "https://github.com/Tonejs/Midi.git"
},
"author": "Yotam Mann",
"license": "MIT",
"bugs": {
"url": "https://github.com/Tonejs/Midi/issues"
},
"homepage": "https://tonejs.github.com/Midi/",
"devDependencies": {
"@babel/core": "^7.2.2",
"@babel/polyfill": "^7.2.5",
"@babel/preset-env": "^7.3.1",
"@babel/register": "^7.9.0",
"@types/chai": "^4.1.7",
"@types/mocha": "^8.0.1",
"@types/node": "^11.9.3",
"@typescript-eslint/eslint-plugin": "^2.6.0",
"@typescript-eslint/parser": "^2.6.0",
"chai": "^4.2.0",
"codecov": "^3.2.0",
"eslint": "^6.6.0",
"glob": "^7.1.3",
"http-server": "^0.12.3",
"mocha": "^8.1.0",
"node-fetch": "^2.3.0",
"nyc": "^14.1.1",
"semver": "^5.6.0",
"source-map-support": "^0.5.12",
"ts-loader": "^5.4.5",
"ts-node": "^8.1.0",
"typedoc": "^0.15.0",
"typescript": "^3.7.2",
"webpack": "^4.44.1",
"webpack-cli": "^3.3.12"
},
"dependencies": {
"array-flatten": "^2.1.2",
"midi-file": "^1.1.2"
},
"nyc": {
"include": [
"src/**/*.ts"
],
"extension": [
".ts"
],
"require": [
"ts-node/register"
],
"reporter": [
"lcov",
"html"
],
"sourceMap": true,
"instrument": true
},
"prettier": {
"trailingComma": "es5",
"tabWidth": 4,
"semi": true,
"useTabs": true,
"singleQuote": false
}
}