This repository has been archived by the owner on May 29, 2023. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
122 lines (122 loc) · 3.92 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
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
{
"name": "@ng-web-apis/midi",
"version": "1.2.0",
"description": "An Observable based library for the use of Web MIDI API with Angular",
"keywords": [
"angular",
"ng",
"midi",
"audio",
"music",
"synth",
"keyboard"
],
"scripts": {
"ng": "ng",
"start": "ng serve",
"start:aot": "ng serve --configuration production",
"build": "ng build",
"postbuild": "node scripts/postbuild.js",
"build:demo:client": "ng run demo:build",
"test": "ng test",
"posttest": "node scripts/coveralls.js",
"lint": "ng lint",
"typecheck": "tsc --noEmit --skipLibCheck",
"release": "standard-version",
"release:patch": "npm run release -- --release-as patch",
"release:minor": "npm run release -- --release-as minor",
"release:major": "npm run release -- --release-as major",
"publish": "npm run build && npm publish ./dist/midi"
},
"license": "MIT",
"author": {
"name": "Alexander Inkin",
"email": "alexander@inkin.ru"
},
"contributors": [
"Roman Sedov <79601794011@ya.ru>"
],
"repository": "https://github.com/ng-web-apis/midi",
"bugs": "https://github.com/ng-web-apis/midi/issues",
"homepage": "https://github.com/ng-web-apis/midi#README",
"dependencies": {
"@angular/animations": "^7.2.15",
"@angular/common": "^7.2.15",
"@angular/compiler": "^7.2.15",
"@angular/core": "^7.2.15",
"@angular/forms": "^7.2.15",
"@angular/http": "^7.2.15",
"@angular/platform-browser": "^7.2.15",
"@angular/platform-browser-dynamic": "^7.2.15",
"@angular/platform-server": "^7.2.15",
"@angular/router": "^7.2.15",
"@ng-web-apis/audio": "latest",
"@ng-web-apis/common": "latest",
"@nguniversal/common": "^7.1.1",
"@nguniversal/express-engine": "^7.1.1",
"@nguniversal/module-map-ngfactory-loader": "^7.1.1",
"core-js": "^2.5.4",
"rxjs": "^6.5.2",
"tslib": "^1.10.0",
"zone.js": "~0.8.29"
},
"devDependencies": {
"@angular-devkit/build-angular": "~0.13.9",
"@angular-devkit/build-ng-packagr": "~0.13.9",
"@angular-devkit/core": "^7.3.9",
"@angular/cli": "^7.3.9",
"@angular/compiler-cli": "^7.2.15",
"@angular/language-service": "^7.2.15",
"@tinkoff/linters": "^0.4.0",
"@types/express": "4.16.1",
"@types/express-serve-static-core": "4.16.2",
"@types/jasmine": "^3.3.16",
"@types/jasminewd2": "^2.0.6",
"@types/webmidi": "^2.0.4",
"@types/node": "~8.9.4",
"codelyzer": "^5.1.0",
"coveralls": "^3.0.5",
"ecstatic": "^4.1.2",
"express": "^4.17.1",
"http-server": "^0.11.1",
"husky": "^3.0.2",
"jasmine-core": "~3.5.0",
"jasmine-spec-reporter": "~4.2.1",
"karma": "^4.2.0",
"karma-chrome-launcher": "^3.0.0",
"karma-coverage-istanbul-reporter": "^2.1.0",
"karma-jasmine": "~2.0.1",
"karma-jasmine-html-reporter": "^1.4.2",
"lint-staged": "^9.2.1",
"lodash": "^4.17.15",
"ng-packagr": "4.7.1",
"prettier": "^1.18.2",
"standard-version": "^7.0.0",
"ts-node": "^8.3.0",
"tsickle": "0.34.0",
"tslint": "^5.18.0",
"tsutils": "^3.17.1",
"typescript": "~3.2.2"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged && npm run typecheck"
}
},
"lint-staged": {
"*.{js,ts,html,md,less,json}": [
"prettier --write",
"git add"
],
"*.ts": "tslint"
},
"standard-version": {
"scripts": {
"postbump": "node scripts/syncVersions.js && git add **/package.json"
}
},
"engines": {
"node": ">= 10",
"npm": ">= 3"
}
}