-
Notifications
You must be signed in to change notification settings - Fork 17
/
Copy pathpackage.json
53 lines (53 loc) · 1.16 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
{
"name": "md2xliff",
"version": "2.0.0",
"description": "Markdown to XLIFF converter",
"main": "index.js",
"bin": {
"extract": "./bin/extract",
"xliffReconstruct": "./bin/xliff-reconstruct",
"pretranslate": "./bin/pretranslate"
},
"scripts": {
"test": "nyc mocha && node test/smoke"
},
"bugs": {
"url": "http://github.com/tadatuta/md2xliff/issues"
},
"repository": {
"type": "git",
"url": "git://github.com/tadatuta/md2xliff.git"
},
"author": "Vladimir Grinenko <i@tadatuta.com>",
"keywords": [
"xliff",
"markdown",
"skeleton",
"translation",
"localization",
"i18n",
"github",
"xlf",
"code"
],
"license": "MIT",
"dependencies": {
"escape-html": "^1.0.3",
"esprima": "^2.7.0",
"esprima-extract-comments": "^0.1.2",
"got": "^5.0.0",
"htmlparser2": "^3.8.3",
"remark-frontmatter": "^1.3.1",
"remark-parse": "^4.0.0",
"remark-parse-yaml": "^0.0.2",
"strip": "^3.0.0",
"unified": "^6.1.5",
"xamel": "^0.3.1"
},
"devDependencies": {
"mocha": "^3.5.0",
"nyc": "^11.1.0",
"eslint": "^3.17.0",
"eslint-config-pedant": "^0.8.0"
}
}