-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.02 KB
/
package.json
File metadata and controls
44 lines (44 loc) · 1.02 KB
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
{
"name": "docutils",
"version": "1.2.1",
"description": "Simple javascript parser for docutils xml documents",
"author": "Valentin Berlier <berlier.v@gmail.com>",
"license": "MIT",
"keywords": [
"docutils",
"reStructuredText",
"xml",
"parser",
"sphinx"
],
"homepage": "https://github.com/vberlier/docutils#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/vberlier/docutils.git"
},
"bugs": {
"url": "https://github.com/vberlier/docutils/issues"
},
"main": "lib/index.js",
"scripts": {
"lint": "eslint .",
"test": "jest",
"postversion": "git push --follow-tags"
},
"devDependencies": {
"eslint": "^7.2.0",
"eslint-config-standard": "^16.0.1",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-node": "^11.0.0",
"eslint-plugin-promise": "^5.1.0",
"eslint-plugin-standard": "^5.0.0",
"jest": "^27.0.3",
"jest-raw-loader": "^1.0.1"
},
"dependencies": {
"sax": "^1.2.4"
},
"files": [
"lib/*.js"
]
}