-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
45 lines (45 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
{
"name": "icu-pseudo-translate",
"version": "4.0.0",
"description": "Translate ICU message strings into pseduo-translated ICU message strings.",
"main": "src/index.js",
"author": "Tim Whidden <[email protected]>",
"license": "MIT",
"homepage": "https://github.com/1stdibs/icu-pseudo-translate",
"keywords": [
"translation",
"pseudo-translation",
"icu",
"icu-messageformat"
],
"engines": {
"node": ">=6.10.3"
},
"repository": {
"type": "git",
"url": "https://github.com/1stdibs/icu-pseudo-translate.git"
},
"bugs": {
"url": "https://github.com/1stdibs/icu-pseudo-translate/issues"
},
"scripts": {
"precommit": "yarn run lint",
"lint": "eslint ./src __tests__",
"test": "jest"
},
"dependencies": {
"@formatjs/icu-messageformat-parser": "^2.1.0"
},
"devDependencies": {
"eslint": "^4.10.0",
"eslint-config-1stdibs": "^4.2.0",
"eslint-plugin-flowtype": "^2.39.1",
"eslint-plugin-import": "^2.12.0",
"eslint-plugin-jest": "^21.17.0",
"eslint-plugin-mocha": "^4.11.0",
"eslint-plugin-react": "^7.9.1",
"eslint-plugin-require-path-exists": "^1.1.7",
"husky": "^0.14.3",
"jest": "^25.0.0"
}
}