-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
78 lines (78 loc) · 1.9 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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
{
"name": "flot-fyr-markdown",
"version": "0.0.0-development",
"description": "",
"main": "index.js",
"scripts": {
"start": "node demo.js",
"semantic-release": "semantic-release",
"commit": "git-cz"
},
"repository": {
"type": "git",
"url": "https://github.com/thorecaspersen/flot-fyr-markdown.git"
},
"engines": {
"node": ">=4.0.0"
},
"files": [
"lib",
"input",
"output",
"index.js",
"demo.js"
],
"author": "Thore Caspersen",
"license": "",
"dependencies": {
"babel-core": "^6.26.3",
"babel-preset-env": "^1.7.0",
"babel-preset-react": "^6.24.1",
"balanced-match": "^1.0.0",
"block-elements": "^1.2.0",
"front-matter": "^3.0.2",
"github-slugger": "^1.2.1",
"kebab-case": "^1.0.0",
"line-column": "^1.0.2",
"lodash": "^4.17.11",
"mdast-util-to-string": "^1.0.6",
"pascal-case": "^2.0.1",
"postcss": "^7.0.16",
"postcss-js": "^2.0.1",
"prettier": "^1.17.1",
"property-information": "^3.2.0",
"react-attr-converter": "^0.3.1",
"recursive-copy": "^2.0.10",
"rehype-raw": "^4.0.0",
"remark-parse": "^6.0.3",
"remark-rehype": "^4.0.0",
"replace-ext": "^1.0.0",
"stringify-entities": "^2.0.0",
"stringify-object": "^3.3.0",
"strip-indent": "^3.0.0",
"through2": "^3.0.1",
"unified": "^7.1.0",
"unist-util-visit": "^1.4.1",
"url-parse": "^1.4.7"
},
"devDependencies": {
"@commitlint/cli": "^8.0.0",
"@commitlint/config-conventional": "^8.0.0",
"@commitlint/travis-cli": "^8.0.0",
"commitizen": "^3.1.1",
"cz-conventional-changelog": "^2.1.0",
"husky": "^2.4.0",
"semantic-release": "^15.13.12",
"semantic-release-cli": "^5.1.1"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"husky": {
"hooks": {
"commit-msg": "commitlint -e $GIT_PARAMS"
}
}
}