-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
57 lines (57 loc) · 1.31 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
{
"name": "i18n-dts",
"version": "0.3.0",
"description": "A tiny d.ts file generator for react-native-i18n",
"bin": {
"i18n-dts": "build/bin/index.js"
},
"repository": "https://github.com/quipper/i18n-dts",
"bugs": "https://github.com/quipper/i18n-dts/issues",
"keywords": [
"react-native",
"typescript"
],
"scripts": {
"tsc": "tsc",
"test": "jest"
},
"license": "Apache-2.0",
"dependencies": {
"commander": "^2.15.1",
"mkdirp": "^0.5.1",
"typescript": "^2.7.2"
},
"devDependencies": {
"@types/commander": "^2.12.2",
"@types/jest": "^22.2.3",
"@types/mkdirp": "^0.5.2",
"@types/node": "^9.4.6",
"jest": "^22.4.3",
"prettier": "^1.12.1",
"ts-jest": "^23.10.5",
"tslint": "^5.9.1",
"tslint-config-prettier": "^1.12.0"
},
"jest": {
"testURL": "http://localhost/",
"transform": {
"^.+\\.tsx?$": "ts-jest"
},
"testRegex": "(/__tests__/.*|(\\.|/)(Test))\\.(jsx?|tsx?)$",
"testPathIgnorePatterns": [
"<rootDir>/build/",
"<rootDir>/node_modules/",
"<rootDir>/src/lib/__tests__/generated/",
"<rootDir>/src/lib/__tests__/expected/",
"<rootDir>/src/lib/__tests__/utils.ts"
],
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"jsx",
"json",
"node"
]
}
}