-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
36 lines (36 loc) · 876 Bytes
/
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
{
"name": "pled",
"version": "0.1.1",
"description": "Merging and transforming m3u playlists",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"docs": "node node_modules/jsdoc-to-markdown/bin/cli --template tools/api.hbs index.js > api.md"
},
"repository": {
"type": "git",
"url": "git+https://github.com/solvek/pled.git"
},
"keywords": [
"m3u",
"playlist",
"merge",
"transform"
],
"author": "Sergi Adamchuk",
"license": "ISC",
"bugs": {
"url": "https://github.com/solvek/pled/issues"
},
"homepage": "https://github.com/solvek/pled#readme",
"devDependencies": {
"babel-cli": "^6.5.1",
"jsdoc-to-markdown": "^1.3.3",
"chai": "*",
"mocha": "*",
"nock": "^7.0.2"
},
"dependencies": {
"m3ujs": "git://github.com/solvek/m3u.js.git#master"
}
}