-
Notifications
You must be signed in to change notification settings - Fork 23
/
Copy pathpackage.json
46 lines (46 loc) · 1.08 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
{
"name": "node-podcast-parser",
"description": "Parse podcast feeds into objects",
"version": "2.3.0",
"main": "index.js",
"scripts": {
"build": "babel src/index.js --out-file index.js",
"prepublish": "npm run build && npm run test",
"test": "mocha",
"cover": "istanbul cover _mocha",
"coveralls": "npm run cover -- --report lcovonly && cat ./coverage/lcov.info | coveralls"
},
"keywords": [
"podcast",
"node",
"rss",
"feed",
"parse",
"xml"
],
"author": "Antti Kupila <[email protected]>",
"license": "ISC",
"devDependencies": {
"babel-cli": "^6.6.4",
"babel-preset-es2015": "^6.6.0",
"coveralls": "^3.0.1",
"expect.js": "0.3.1",
"istanbul": "^0.4.5",
"mocha": "^5.1.1",
"mocha-lcov-reporter": "1.0.0"
},
"dependencies": {
"lodash": "^4.17.10",
"sax": "1.1.5"
},
"engines": {
"node": ">= 4.0.0"
},
"repository": {
"type": "git",
"url": "https://github.com/akupila/node-podcast-parser"
},
"bugs": {
"url": "https://github.com/akupila/node-podcast-parser/issues"
}
}