-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
32 lines (32 loc) · 979 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
{
"name": "hubpress-plugin-rss",
"version": "0.1.0",
"description": "RSS plugin for HubPress",
"main": "lib/rssPlugin.js",
"scripts": {
"compile": "babel --presets es2015 -d lib/ src/",
"prepublish": "npm run compile",
"test": "mocha --compilers js:babel-core/register",
"cover": "babel-node ./node_modules/.bin/isparta cover _mocha -- --compilers js:babel-core/register",
"coveralls": "npm run cover -- --reporter mocha-lcov-reporter && cat ./coverage/lcov.info | coveralls"
},
"author": "Anthonny Quérouil <[email protected]> (http://anthonnyquerouil.fr)",
"license": "MIT",
"files": [
"lib"
],
"dependencies": {
"rss": "^1.2.1"
},
"devDependencies": {
"babel-cli": "^6.6.5",
"babel-core": "^6.7.2",
"babel-preset-es2015": "^6.6.0",
"chai": "^3.5.0",
"coveralls": "^2.11.8",
"isparta": "^4.0.0",
"mocha": "^2.4.5",
"mocha-lcov-reporter": "^1.2.0",
"uglify-js": "^2.6.2"
}
}