This repository has been archived by the owner on Jan 10, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 12
/
package.json
100 lines (100 loc) · 2.36 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
88
89
90
91
92
93
94
95
96
97
98
99
100
{
"name": "react-gettext",
"description": "Gettext implementation for React based project.",
"license": "MIT",
"author": "Eugene Manuilov <eugene.manuilov@gmail.com>",
"homepage": "https://github.com/eugene-manuilov/react-gettext#readme",
"bugs": {
"url": "https://github.com/eugene-manuilov/react-gettext/issues"
},
"version": "1.0.2",
"main": "lib/index.js",
"files": [
"*.md",
"dist",
"LICENSE",
"lib",
"src"
],
"keywords": [
"react",
"gettext",
"gettextjs"
],
"repository": {
"type": "git",
"url": "git@github.com:eugene-manuilov/react-gettext.git"
},
"scripts": {
"build": "npm run build:commonjs & npm run build:umd & npm run build:umd:min",
"build:commonjs": "mkdir -p lib && babel ./src -d lib",
"build:umd": "webpack --output-filename=react-gettext.js",
"build:umd:min": "NODE_ENV=production webpack --output-filename=react-gettext.min.js",
"test": "BABEL_ENV=test jest",
"prepublish": "npm run build"
},
"devDependencies": {
"@babel/cli": "^7.12.1",
"@babel/core": "^7.12.3",
"@babel/preset-env": "^7.12.1",
"@babel/preset-react": "^7.12.1",
"babel-jest": "^26.5.2",
"babel-loader": "^8.1.0",
"enzyme": "^3.11.0",
"enzyme-adapter-react-16": "^1.15.5",
"eslint": "^6.8.0",
"eslint-config-airbnb": "^18.2.0",
"eslint-loader": "^3.0.4",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jsx-a11y": "^6.3.1",
"eslint-plugin-react": "^7.21.4",
"faker": "^5.1.0",
"jest": "^26.5.3",
"jest-enzyme": "^7.1.2",
"lodash": "^4.17.20",
"prop-types": "^15.7.2",
"react": "^16.14.0",
"react-dom": "^16.14.0",
"react-test-renderer": "^16.14.0",
"webpack": "^4.44.2",
"webpack-cli": "^3.3.12"
},
"peerDependencies": {
"hoist-non-react-statics": "^1.2.0 || ^2.0.0-0 || ^3.0.0-0",
"prop-types": "^15.0.0-0 || ^16.0.0-0",
"react": "^15.0.0-0 || ^16.0.0-0"
},
"eslintConfig": {
"extends": "airbnb",
"rules": {
"func-names": 0,
"no-tabs": 0,
"max-len": 1,
"class-methods-use-this": 0,
"prefer-object-spread": 0,
"indent": [
2,
"tab"
],
"padded-blocks": [
"error",
{
"classes": "always"
}
],
"react/jsx-filename-extension": 0
}
},
"jest": {
"setupFilesAfterEnv": [
"<rootDir>/__tests__/__setup.js"
],
"testMatch": [
"<rootDir>/__tests__/**/[^_]*.js"
],
"verbose": true
},
"dependencies": {
"hoist-non-react-statics": "^3.3.2"
}
}