-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
64 lines (64 loc) · 1.79 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
{
"name": "ca.jaggernaut.midi-mixer.spotify",
"version": "1.1.3",
"private": true,
"description": "A Spotify plugin for MIDI Mixer.",
"files": [
"circle.ico",
"PAGE.md",
"plugin.json",
"lib"
],
"scripts": {
"copy": "copyfiles --up 1 src/views/* lib/",
"build": "tsc && npm run copy",
"semantic-release": "semantic-release",
"postversion": "npx ts-node scripts/bump-manifest.ts && midi-mixer pack",
"pack": "midi-mixer pack",
"test": "node lib/index.js"
},
"license": "ISC",
"devDependencies": {
"@semantic-release/exec": "^5.0.0",
"@semantic-release/git": "^9.0.0",
"@types/express": "^4.17.13",
"@types/express-session": "^1.17.4",
"@types/node": "^15.12.1",
"@types/passport": "^1.0.7",
"@types/passport-spotify": "^2.0.1",
"@types/spotify-web-api-node": "^5.0.7",
"@typescript-eslint/eslint-plugin": "^4.14.2",
"@typescript-eslint/parser": "^4.14.2",
"copyfiles": "^2.4.1",
"eslint": "^7.19.0",
"eslint-config-prettier": "^7.2.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-prettier": "^3.3.1",
"midi-mixer-cli": "^1.0.1",
"prettier": "^2.2.1",
"semantic-release": "^17.4.3",
"typescript": "^4.1.3"
},
"dependencies": {
"express": "^4.17.2",
"express-session": "^1.17.2",
"midi-mixer-plugin": "^1.0.1",
"passport": "^0.5.2",
"passport-spotify": "^2.0.0",
"pug": "^3.0.2",
"spotify-web-api-node": "^5.0.2"
},
"bundledDependencies": [
"midi-mixer-plugin",
"spotify-web-api-node",
"pug",
"passport",
"passport-spotify",
"express",
"express-session"
],
"repository": {
"type": "git",
"url": "https://github.com/Jaggernaut555/midi-mixer-spotify.git"
}
}