-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
35 lines (35 loc) · 982 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
{
"name": "m3u-parser",
"version": "1.0.3",
"description": "Simple library for hassle-free M3U playlists parsing",
"main": "m3u.js",
"scripts": {
"prepublish": "npm run lint && npm run build",
"build": "babel src/m3u.js --out-file m3u.js",
"test": "mocha -R list",
"lint": "eslint m3u.js",
"ci-test": "istanbul cover _mocha -- -R tap --compilers js:babel-register > result.tap && istanbul report clover"
},
"keywords": [
"m3u",
"playlist",
"parser"
],
"author": "Nikita Khomyakov <[email protected]>",
"repository": "v12/m3u-parser",
"homepage": "https://github.com/v12/m3u-parser",
"bugs": "https://github.com/v12/m3u-parser/issues",
"license": "ISC",
"dependencies": {
"bluebird": "^3.1.1"
},
"devDependencies": {
"babel-cli": "^6.6.5",
"babel-register": "^6.7.2",
"chai": "4.0.2",
"chai-as-promised": "^6.0.0",
"eslint": "^4.1.0",
"istanbul": "^1.0.0-alpha.2",
"mocha": "^3.0.1"
}
}