-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
87 lines (87 loc) · 2.73 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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
{
"name": "@assembless/react-littera",
"version": "2.4.0",
"description": "🌐 Modern react library for robust translations.",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "webpack --config webpack.config.js --env.prod --define process.env.NODE_ENV=\"'production'\"",
"docs": "jsdoc -c jsdoc.json",
"test": "jest --config=jest.config.json",
"test:watch": "jest --config=jest.config.json --watch",
"test:coverage": "jest --config=jest.config.json --coverage",
"lint": "eslint . --ext .js",
"ci": "run-p lint build test:coverage",
"deploy": "yarn build && npm publish",
"typecheck": "tsc --noEmit"
},
"peerDependencies": {},
"devDependencies": {
"@babel/compat-data": "^7.9.0",
"@babel/plugin-transform-runtime": "^7.0.0-beta.33",
"@babel/preset-env": "^7.0.0-beta.33",
"@babel/preset-es2015": "^7.0.0-beta.53",
"@babel/preset-react": "^7.7.0",
"@babel/register": "^7.0.0-beta.33",
"@babel/runtime": "^7.0.0-beta.33",
"@testing-library/react-hooks": "^3.2.1",
"@types/jest": "^24.0.22",
"@types/node": "^14.6.4",
"awesome-typescript-loader": "^5.2.1",
"babel-eslint": "^10.0.1",
"babel-jest": "^23.6.0",
"babel-loader": "^7.1.5",
"babel-plugin-root-import": "^6.4.1",
"babel-plugin-transform-es2015-modules-commonjs": "^6.24.1",
"better-docs": "^2.3.0",
"copy-webpack-plugin": "^5.0.3",
"coveralls": "^3.0.3",
"enzyme": "^3.11.0",
"enzyme-adapter-react-16": "^1.11.2",
"eslint": "^5.15.3",
"eslint-config-airbnb": "^17.1.0",
"eslint-plugin-import": "^2.16.0",
"eslint-plugin-jsx-a11y": "^6.2.1",
"eslint-plugin-react": "^7.12.4",
"html-webpack-plugin": "^3.2.0",
"jest": "^26.1.0",
"jsdoc": "^3.6.4",
"npm-run-all": "^4.1.5",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"react-test-renderer": "^16.13.1",
"source-map-loader": "^0.2.4",
"ts-jest": "^24.1.0",
"typescript": "^3.9.6",
"webpack": "^4.29.6",
"webpack-cli": "^3.3.0",
"webpack-dev-server": "^3.2.1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Assembless/react-littera.git"
},
"keywords": [
"translation",
"language",
"internationalization",
"local",
"localization",
"i18n",
"translate",
"multilingual"
],
"author": "Assembless <support@assembless.tech>",
"license": "MIT",
"bugs": {
"url": "https://github.com/Assembless/react-littera/issues"
},
"homepage": "https://assembless.github.io/react-littera/",
"parserOptions": {
"ecmaFeatures": {
"jsx": true,
"modules": true
}
},
"dependencies": {}
}