-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathpackage.json
86 lines (86 loc) · 2.06 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
79
80
81
82
83
84
85
86
{
"name": "reactdown",
"version": "1.0.0-alpha14",
"description": "Markdown and React based live document format",
"main": "lib/index.js",
"scripts": {
"test": "make lint check test",
"prepublish": "make"
},
"jest": {
"testEnvironment": "node"
},
"bin": {
"reactdown": "./lib/bin/reactdown-render"
},
"eslintConfig": {
"extends": "prometheusresearch",
"plugins": [
"flow-vars"
],
"rules": {
"flow-vars/define-flow-type": 1,
"flow-vars/use-flow-type": 1
},
"env": {
"mocha": true
},
"globals": {
"$Shape": true,
"expr": true,
"stmt": true
}
},
"repository": {
"type": "git",
"url": "git+https://github.com/andreypopp/reactdown.git"
},
"keywords": [
"react",
"markdown"
],
"author": "Andrey Popp <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/andreypopp/reactdown/issues"
},
"homepage": "https://github.com/andreypopp/reactdown#readme",
"dependencies": {
"babel-generator": "^6.7.5",
"babel-plugin-ast-literal": "^0.5.4",
"collapse-white-space": "^1.0.0",
"commander": "^2.9.0",
"detab": "^1.0.2",
"indent-string": "^2.1.0",
"invariant": "^2.2.1",
"js-yaml": "^3.5.5",
"json5": "^0.5.0",
"loader-utils": "^0.2.13",
"mdast-util-to-string": "^1.0.1",
"normalize-uri": "^1.0.0",
"remark": "^6.0.0",
"resolve": "^1.1.7",
"slug": "^0.9.1",
"trim": "0.0.1",
"trim-lines": "^1.0.0",
"unist-util-visit": "^1.1.0",
"validated": "^0.7.0"
},
"devDependencies": {
"babel-cli": "^6.6.5",
"babel-generator": "^6.7.2",
"babel-jest": "^15.0.0",
"babel-preset-prometheusresearch": "^0.1.0",
"babel-types": "^6.7.2",
"eslint": "^2.5.3",
"eslint-config-prometheusresearch": "^0.2.0",
"eslint-plugin-flow-vars": "^0.4.0",
"eslint-plugin-react": "^6.2.2",
"flow-bin": "^0.32.0",
"gh-pages": "^0.11.0",
"jest-cli": "^15.1.1",
"react": "^15.0.2",
"sloc": "^0.1.10",
"yaml-front-matter": "^3.4.0"
}
}