-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 757 Bytes
/
package.json
File metadata and controls
39 lines (39 loc) · 757 Bytes
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
{
"name": "daap-parser",
"version": "0.1.1",
"description": "DAAP parser",
"main": "daap-parser.js",
"bin": "./cli.js",
"scripts": {
"test": "mocha",
"lint": "eslint --ext .js ./"
},
"pre-commit": [
"lint",
"test"
],
"repository": {
"type": "git",
"url": "https://github.com/roblan/daap-parser.git"
},
"keywords": [
"daap",
"dmap",
"itunes",
"shairport-sync",
"shairport",
"forked-daapd"
],
"author": {
"name": "Robert Lange",
"url": "https://github.com/roblan"
},
"license": "MIT",
"devDependencies": {
"eslint": "^5.8.0",
"eslint-config-airbnb-base": "^13.1.0",
"eslint-plugin-import": "^2.14.0",
"mocha": "^5.2.0",
"pre-commit": "^1.2.2"
}
}