-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
54 lines (54 loc) · 1.24 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
{
"name": "i18next-keys-ondemand",
"version": "0.2.0",
"description": "i18next plugin to request the non-translated keys when used",
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"repository": "https://github.com/kingatlas/i18next-keys-ondemand.git",
"author": "Nabil Koroghli",
"license": "MIT",
"scripts": {
"prepublish": "yarn build && yarn test",
"test": "jest",
"build": "gulp"
},
"files": [
"dist"
],
"devDependencies": {
"@types/jest": "^21.1.4",
"gulp": "^3.9.1",
"gulp-clean": "^0.3.2",
"gulp-tslint": "^8.1.2",
"gulp-typescript": "^3.2.2",
"i18next": "^10.0.3",
"jest": "^21.2.1",
"merge2": "^1.2.0",
"ts-jest": "^21.1.3",
"tslint": "^5.8.0",
"typescript": "^2.5.3",
"whatwg-fetch": "^2.0.3"
},
"dependencies": {
"debounce": "^1.0.2"
},
"peerDependencies": {
"i18next": "10.x.x"
},
"jest": {
"moduleFileExtensions": [
"ts",
"tsx",
"js"
],
"setupFiles": [
"<rootDir>/config/polyfills.js"
],
"transform": {
"^.+\\.tsx?$": "<rootDir>/config/typescriptTransform.js"
},
"testMatch": [
"**/?(*.)(spec|test).ts?(x)"
]
}
}