This repository has been archived by the owner on Nov 13, 2017. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
61 lines (61 loc) · 1.49 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
{
"name": "md-to-bemjson",
"version": "0.7.1",
"description": "markdown to bemjson converter",
"main": "index.js",
"scripts": {
"pretest": "npm run lint",
"test": "npm run specs",
"specs": "mocha test/",
"cover": "nyc mocha test/",
"lint": "eslint .",
"release": "standard-version; git push --follow-tags origin master",
"github-release": "conventional-github-releaser -p angular -r 0"
},
"engines": {
"node": ">= 4"
},
"repository": {
"type": "git",
"url": "git+https://github.com/birhoff/md-to-bemjson.git"
},
"keywords": [
"markdown",
"to",
"bemjson",
"md",
"converter",
"parser",
"bem",
"json"
],
"author": "Konstantin Gladkikh <birhoff@gmail.com>",
"license": "MPL-2.0",
"bugs": {
"url": "https://github.com/birhoff/md-to-bemjson/issues"
},
"homepage": "https://github.com/birhoff/md-to-bemjson#readme",
"devDependencies": {
"@types/chai": "^4.0.4",
"@types/sinon": "^2.3.5",
"chai": "^4.0.2",
"chai-as-promised": "^7.0.0",
"chai-string": "^1.3.0",
"eslint": "^4.1.0",
"eslint-config-birhoff": "^0.1.0",
"mocha": "^4.0.0",
"nyc": "^11.0.0",
"sinon": "^4.0.0"
},
"dependencies": {
"bluebird": "^3.5.0",
"html2bemjson": "^1.9.0",
"lodash.defaultsdeep": "^4.6.0",
"remark-bemjson": "0.3.1",
"remark-github": "^7.0.0",
"remark-inline-links": "^3.0.3",
"remark-parse": "^4.0.0",
"remark-stringify": "^4.0.0",
"unified": "^6.1.5"
}
}