forked from rotorz/markdown-it-block-embed
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
39 lines (39 loc) · 1.42 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
{
"name": "markdown-it-block-embed",
"version": "0.0.3",
"description": "Plugin for markdown-it that detects and outputs block level embeds such as videos and supports custom embed services.",
"main": "lib/index.js",
"scripts": {
"build-browser": "rm -rf dist && mkdir dist && browserify lib/index.js -o dist/markdown-it-block-embed.js -t [ babelify ]",
"test": "npm run test-lint && npm run test-spec",
"test-ci": "npm run test-lint && npm run test-coverage-ci",
"test-spec": "mocha",
"test-lint": "eslint lib && eslint test",
"test-coverage": "rm -rf coverage && istanbul cover node_modules/mocha/bin/_mocha",
"test-coverage-ci": "rm -rf coverage && istanbul cover node_modules/mocha/bin/_mocha --report lcovonly -- -R spec && cat coverage/lcov.info | node node_modules/coveralls/bin/coveralls.js && rm -rf coverage"
},
"repository": {
"type": "git",
"url": "https://github.com/rotorz/markdown-it-block-embed"
},
"author": "Rotorz Limited",
"license": "MIT",
"keywords": [
"markdown-it",
"markdown-it-plugin"
],
"dependencies": {},
"devDependencies": {
"babel-preset-es2015": "^6.9.0",
"babel-register": "^6.9.0",
"babelify": "^7.3.0",
"browserify": "^13.0.1",
"coveralls": "^2.11.2",
"eslint": "^3.0.1",
"eslint-config-xo": "^0.13.0",
"istanbul": "^0.3.5",
"markdown-it": "^4.1.0",
"markdown-it-testgen": "^0.1.4",
"mocha": "^2.1.0"
}
}