-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
42 lines (42 loc) · 870 Bytes
/
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
{
"name": "rst2html",
"version": "1.0.4",
"description": "Convert reStructured Text to HTML",
"author": "Troy Howard",
"repository": "git://github.com/thoward/rst2html.git",
"homepage": "https://github.com/thoward/rst2html",
"bugs": {
"url": "http://github.com/thoward/rst2html/issues"
},
"license": "MIT",
"keywords": [
"reST",
"reStructuredText",
"rst",
"markup",
"html"
],
"tags": [
"reST",
"reStructuredText",
"rst",
"markup",
"html"
],
"main": "dist/rst2html.min.js",
"scripts": {
"test": "jest",
"build": "webpack"
},
"devDependencies": {
"babel-core": "^6.26.0",
"babel-loader": "^7.1.2",
"babel-preset-env": "^1.6.1",
"babel-preset-es2015": "^6.24.1",
"jest": "^21.2.1",
"webpack": "^3.10.0"
},
"dependencies": {
"restructured": "0.0.11"
}
}