-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
71 lines (71 loc) · 1.84 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
{
"name": "tx-i18n",
"version": "1.0.1",
"description": "Auto-translate for your application (ICU, pluralization, TSX/React supported)",
"keywords": [
"i18n",
"internationalization",
"pluralization",
"icu",
"jsx",
"react"
],
"author": "RubaXa <[email protected]>",
"license": "MIT",
"repository": "[email protected]:artifact-project/tx-i18n.git",
"main": "index.js",
"scripts": {
"test": "jest",
"test-plugin": "ttsc",
"build": "tsc",
"clean": "git clean -f",
"prepublishOnly": "npm test -- --coverage && npm run build",
"postpublish": "npm run clean"
},
"devDependencies": {
"@storybook/addons": "^5.3.21",
"@storybook/api": "^5.3.21",
"@storybook/channels": "^5.3.21",
"@storybook/components": "^5.3.21",
"@types/jest": "^19.2.3",
"@types/node": "^10.17.56",
"@types/react": "^16.14.5",
"@types/webpack": "^4.41.27",
"awesome-typescript-loader": "^5.2.1",
"jest": "^20.0.3",
"react": "^16.14.0",
"react-test-renderer": "^16.14.0",
"ts-jest": "^20.0.4",
"ts-node": "^8.10.2",
"ttypescript": "^1.5.12",
"typescript": "^3.9.9",
"webpack": "^4.46.0"
},
"peerDependencies": {
"@storybook/addons": ">=5",
"@storybook/api": ">=5",
"@storybook/channels": ">=5",
"@storybook/components": ">=5",
"react": ">=15"
},
"jest": {
"transform": {
"^.+\\.tsx?$": "<rootDir>/node_modules/ts-jest/preprocessor.js"
},
"testRegex": "\\.tests\\.ts$",
"transformIgnorePatterns": [],
"setupTestFrameworkScriptFile": "<rootDir>/__jest__/extensions.ts",
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"json"
]
},
"dependencies": {
"@artifact-project/i18n": "^1.0.1",
"@types/html-entities": "^1.2.16",
"format-message-parse": "^6.2.3",
"html-entities": "^1.4.0"
}
}