-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
52 lines (52 loc) · 1.33 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
{
"name": "rtl-md",
"version": "1.0.1",
"description": "A simple markdown to html converter which knows the direction!",
"main": "index.js",
"scripts": {
"build": "babel src --out-dir dist",
"lint": "eslint src test",
"test": "npm run build && mocha --compilers js:babel-core/register test/index.js"
},
"files": [
"dist"
],
"repository": {
"type": "git",
"url": "git+https://github.com/mamal72/rtl-md.git"
},
"keywords": [
"markdown",
"rtl",
"html",
"readme"
],
"author": "Mohamad Jahani <m4m4lj@gmail.com> (https://github.com/mamal72)",
"license": "MIT",
"bugs": {
"url": "https://github.com/mamal72/rtl-md/issues"
},
"homepage": "https://github.com/mamal72/rtl-md#readme",
"dependencies": {
"cheerio": "^0.20.0",
"html-entities": "^1.2.0",
"marked": "^0.3.5"
},
"devDependencies": {
"babel-cli": "^6.9.0",
"babel-core": "^6.9.1",
"babel-eslint": "^6.0.4",
"babel-plugin-add-module-exports": "^0.2.1",
"babel-preset-es2015": "^6.9.0",
"babel-preset-stage-0": "^6.5.0",
"chai": "^3.5.0",
"eslint": "^2.11.1",
"eslint-config-airbnb": "^9.0.1",
"grunt": "^1.0.1",
"grunt-babel": "^6.0.0",
"grunt-contrib-watch": "^1.0.0",
"grunt-eslint": "^18.1.0",
"load-grunt-tasks": "^3.5.0",
"mocha": "^2.5.3"
}
}