-
Notifications
You must be signed in to change notification settings - Fork 13
/
package.json
72 lines (72 loc) · 1.9 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
{
"name": "presonus-studiolive-api",
"version": "1.4.2",
"description": "Unofficial PreSonus StudioLive III Network Control API",
"main": "dist/api.js",
"scripts": {
"build": "npm-run-all lint clean transpile",
"build:fix": "npm-run-all lint:fix clean transpile",
"clean": "rimraf dist",
"transpile": "tsc",
"lint": "standardx src/**/*.{ts,js} | snazzy",
"lint:fix": "standardx --fix src/**/*.{ts,js} | snazzy",
"install": "npm run --silent transpile",
"test": "sucrase-node test.ts | bunyan",
"test:debug": "cross-env DEBUG=1 sucrase-node test.ts | bunyan"
},
"repository": {
"type": "git",
"url": "git+https://github.com/featherbear/PreSonus-StudioLive-API.git"
},
"author": "featherbear",
"license": "MIT",
"bugs": {
"url": "https://github.com/featherbear/PreSonus-StudioLive-API/issues"
},
"homepage": "https://featherbear.cc/presonus-studiolive-api",
"dependencies": {
"@types/node": "^14.14.6",
"bunyan": "^1.8.15",
"queue": "^6.0.1",
"typescript": "^4.5.4"
},
"devDependencies": {
"@types/bunyan": "^1.8.8",
"@typescript-eslint/eslint-plugin": "^5.9.0",
"@typescript-eslint/parser": "^5.9.0",
"cross-env": "^7.0.3",
"npm-run-all": "^4.1.5",
"rimraf": "^3.0.2",
"snazzy": "^9.0.0",
"standardx": "^7.0.0",
"sucrase": "^3.20.3"
},
"eslintConfig": {
"globals": {
"logger": "writable"
},
"rules": {
"no-trailing-spaces": [
"warn",
{
"ignoreComments": true,
"skipBlankLines": true
}
],
"no-dupe-class-members": "off",
"space-before-function-paren": "off",
"@typescript-eslint/no-unused-vars": [
"error",
{
"argsIgnorePattern": "."
}
]
}
},
"standardx": {
"parser": "@typescript-eslint/parser",
"plugins": [
"@typescript-eslint/eslint-plugin"
]
}
}