-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
43 lines (43 loc) · 1.1 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
{
"name": "node-vlc-http",
"version": "1.2.0",
"description": "HTTP API client for vlc.",
"keywords": [
"node",
"vlc",
"http",
"client",
"interface",
"vlc-http",
"vlc-client",
"json",
"typed"
],
"main": "dist/index.js",
"types": "dist/index.d.ts",
"repository": "https://github.com/ldubos/node-vlc-http.git",
"author": "ldubos <[email protected]>",
"license": "MIT",
"scripts": {
"build": "npx rimraf dist && npx tsc",
"lint": "npx eslint lib/*.ts"
},
"devDependencies": {
"@types/node": "^12.7.4",
"@typescript-eslint/eslint-plugin": "^2.1.0",
"@typescript-eslint/parser": "^2.1.0",
"eslint": "^6.3.0",
"eslint-config-prettier": "^6.2.0",
"eslint-config-standard": "^14.1.0",
"eslint-import-resolver-typescript": "^1.1.1",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-node": "^10.0.0",
"eslint-plugin-prettier": "^3.1.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.1",
"prettier": "^1.18.2",
"rimraf": "^3.0.0",
"typescript": "^3.6.2"
},
"dependencies": {}
}