-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
35 lines (35 loc) · 1.25 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
{
"name": "hubpress-plugin-asciidoc",
"version": "0.1.2",
"description": "Asciidoc plugin for HubPress",
"main": "lib/asciidocPlugin.js",
"scripts": {
"compile": "babel --presets es2015 -d lib/ src/ && find ./lib -name '*.js' -exec ./node_modules/uglify-js/bin/uglifyjs --compress --mangle --output {} -- {} \\;",
"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 <anthonny.querouil@gmail.com> (http://anthonnyquerouil.fr)",
"license": "MIT",
"files": [
"lib"
],
"dependencies": {
"asciidoctor.js": "github:anthonny/asciidoctor.js#fix-opal",
"hubpress-core-slugify": "github:hubpress/hubpress-core-slugify#cfe920c",
"lodash": "^4.5.0",
"moment": "^2.11.2"
},
"devDependencies": {
"babel-cli": "^6.22.2",
"babel-core": "^6.7.2",
"babel-preset-es2015": "^6.22.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"
}
}