-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
executable file
·71 lines (71 loc) · 1.7 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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
{
"name": "pfeed",
"version": "1.1.11",
"description": "Feed is a RSS 2.0, Atom 1.0 and Json Feed 1.0 generator for Node.js, based on work from Jean-Philippe Monette and initiated by a need of the PeerTube project",
"homepage": "http://github.com/rigelk/feed",
"author": "Rigel Kent <[email protected]>",
"contributors": [
{
"name": "Jean-Philipe Monette",
"email": "[email protected]"
},
{
"name": "Ben McCormick",
"email": "[email protected]"
},
{
"name": "Pierre Galvez",
"email": "[email protected]"
}
],
"license": "MIT",
"main": "lib/feed.js",
"scripts": {
"build": "rm -rf lib/ && mkdir lib && babel -d lib/ src/ --ignore **/*.spec.js -s",
"prepublish": "npm run build",
"test": "export NODE_ENV=test && jest",
"test-travis": "export NODE_ENV=test && jest --coverage"
},
"jest": {
"testURL": "http://localhost/",
"verbose": true,
"collectCoverage": true,
"collectCoverageFrom": [
"**/src/*.{js}"
],
"testMatch": [
"**/*.spec.js"
]
},
"keywords": [
"rss",
"atom",
"feed",
"syndication",
"xml",
"wrapper",
"blog"
],
"dependencies": {
"lodash": "^4.17.15",
"xml": "^1.0.1"
},
"devDependencies": {
"babel-cli": "^6.24.1",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-preset-env": "^1.5.1",
"codeclimate-test-reporter": "^0.5.0",
"coveralls": "^3.0.0",
"jest": "^22.4.3"
},
"engines": {
"node": ">=0.4.0"
},
"bugs": {
"url": "https://github.com/rigelk/feed/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/rigelk/feed.git"
}
}