forked from reactwaylabs/typed-i18next
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
85 lines (85 loc) · 2.35 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": "blink-typedi18next",
"version": "0.1.0",
"description": "Type-safe translations generator for i18next.",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "tsc -p .",
"watch": "tsc -p . -w",
"start": "node dist/cli/main.js",
"pretest": "tsc -p . --noEmit && eslint \"src/**/*.ts*\" -f visualstudio",
"test": "npm run build-tests && jest",
"build-tests": "test-generator-cli"
},
"author": "ReactWay <dev@reactway.com> (https://github.com/reactway)",
"license": "MIT",
"files": [
"dist",
"docs",
"*.js",
"*.d.ts",
"!*.config.js",
"!dist/_debug*"
],
"bin": {
"typed-i18next": "dist/cli/main.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/reactway/typed-i18next.git"
},
"bugs": {
"url": "https://github.com/reactway/typed-i18next/issues"
},
"homepage": "https://github.com/reactway/typed-i18next#readme",
"devDependencies": {
"@reactway/eslint-config": "^1.0.0-alpha",
"@simplrjs/test-generator-cli": "^0.1.3",
"@types/jest": "^24.0.18",
"eslint": "^6.5.1",
"jest": "^24.9.0",
"jest-junit": "^8.0.0",
"ts-jest": "^24.1.0",
"ts-node": "^8.4.1",
"typescript": "^3.6.3"
},
"dependencies": {
"@types/fs-extra": "^8.0.0",
"chalk": "^2.4.2",
"commander": "^3.0.2",
"fs-extra": "^8.1.0",
"loglevel": "^1.6.4",
"loglevel-plugin-prefix": "^0.8.4",
"ts-morph": "^4.2.0",
"upath": "^1.2.0"
},
"jest": {
"verbose": true,
"preset": "ts-jest",
"reporters": [
"default",
"jest-junit"
],
"collectCoverage": true,
"testRegex": "/__tests__/.*\\.(test|spec).(ts|tsx)$",
"collectCoverageFrom": [
"src/**/*.{ts,tsx}",
"!src/**/__tests__/*",
"!src/index.ts",
"!src/cli/**/*"
],
"coverageReporters": [
"cobertura",
"html"
],
"moduleNameMapper": {
"@src/(.*)": "<rootDir>/src/$1"
},
"globals": {
"ts-jest": {
"tsConfig": "./tests/tsconfig.json"
}
}
}
}