-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
69 lines (69 loc) · 1.75 KB
/
package.json
File metadata and controls
69 lines (69 loc) · 1.75 KB
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
{
"name": "react-t7e",
"version": "0.4.2",
"main": "./lib/index.js",
"es": "./es/index.js",
"types": "lib/index.d.ts",
"repository": "git@github.com:woutervanvliet/react-t7e.git",
"author": "Wouter M. van Vliet <wouter@interpotential.com>",
"license": "MIT",
"sideEffects": false,
"keywords": [
"react",
"i18n",
"translate",
"reactjs",
"translations",
"gettext",
"mo",
"po"
],
"scripts": {
"test": "mocha lib/*.test.js",
"lint": "tsc && eslint src/**/*.ts{,x}",
"clean": "rimraf es/ lib/",
"prepare": "yarn build",
"prebuild": "yarn run clean",
"build": "yarn build:es6 && yarn build:es5",
"build:es6": "tsc --project ./tsconfig.es.json --outDir ./es",
"build:es5": "tsc --project ./tsconfig.lib.json --outDir ./lib"
},
"files": [
"react-t7e.d.ts",
"lib/",
"es/",
"src/"
],
"devDependencies": {
"@testing-library/react": "^14.0.0",
"@types/chai": "4.3.5",
"@types/jsdom-global": "3.0.4",
"@types/mocha": "10.0.1",
"@types/node": "^20.5.1",
"@types/react": "^18.2.20",
"@types/react-dom": "18.2.7",
"@typescript-eslint/parser": "^5.61.0",
"chai": "^4.3.7",
"eslint": "^8.47.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-plugin-import": "^2.28.0",
"eslint-plugin-jsx-a11y": "^6.7.1",
"eslint-plugin-react": "^7.33.2",
"eslint-plugin-react-hooks": "^4.6.0",
"jsdom": "^22.1.0",
"jsdom-global": "^3.0.2",
"mocha": "^10.2.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"rimraf": "^5.0.1",
"ts-node": "10.9.1",
"typescript": "^5.1.6"
},
"peerDependencies": {
"react": "^16.9.0 || ^17.0.0 || ^18.0.0"
},
"dependencies": {
"jed": "^1.1.1",
"jed-gettext-parser": "^2.0.0"
}
}