-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
85 lines (85 loc) · 1.92 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
{
"name": "asciidoctor-gettext",
"version": "1.3.1",
"description": "gettext/po string extraction tool for asciidoc documents",
"keywords": [
"adoc",
"asciidoc",
"asciidoctor",
"asciidoctor.js",
"gettext",
"i18n",
"internationalization",
"localization",
"po",
"po4a",
"translation"
],
"homepage": "https://github.com/martijnthe/asciidoctor-gettext",
"repository": "github:martijnthe/asciidoctor-gettext",
"main": "dist/index.js",
"author": "[email protected]",
"license": "MIT",
"bin": {
"asciidoctor-gettext": "bin/asciidoctor-gettext.js"
},
"dependencies": {
"asciidoctor.js": "1.5.7-rc.1",
"commander": "^2.15.1",
"gettext-parser": "^2.0.0"
},
"devDependencies": {
"@types/commander": "^2.12.2",
"@types/jest": "^23.3.5",
"@types/node": "^10.12.0",
"@types/tmp": "^0.0.33",
"coveralls": "^3.0.0",
"jest": "^23.6.0",
"nyc": "^13.1.0",
"tmp": "^0.0.33",
"ts-jest": "^23.10.4",
"tslint": "^5.9.1",
"tslint-config-standard": "^8.0.1",
"typescript": "^3.1.3"
},
"files": [
"bin/*",
"dist/*.js",
"dist/*.d.ts"
],
"scripts": {
"coveralls:upload": "nyc report --reporter=lcov && cat ./coverage/lcov.info | coveralls",
"lint": "tslint -p .",
"prepare": "tsc",
"test": "rm -rf .nyc_output/*.json && jest --collectCoverage"
},
"jest": {
"coverageReporters": [
"json"
],
"coverageDirectory": ".nyc_output",
"transform": {
"^.+\\.tsx?$": "ts-jest"
},
"testRegex": "(/__tests__/.*|(\\.|/)(test|spec))\\.(tsx?)$",
"testPathIgnorePatterns": [
"/node_modules/",
"/dist/"
],
"testEnvironment": "node",
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"jsx",
"json",
"node"
],
"globals": {
"ts-jest": {
"diagnostics": true,
"tsConfig": "tsconfig-ts-jest.json"
}
}
}
}