-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
77 lines (77 loc) · 2.2 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
{
"name": "react-message-source",
"version": "2.4.0",
"description": "A library which aids with i18n of React applications",
"keywords": [
"intl",
"i18n",
"react intl",
"messages",
"translate"
],
"author": "Netcetera AG",
"license": "MIT",
"repository": "https://github.com/netceteragroup/react-message-source",
"main": "dist/react-message-source.js",
"module": "dist/react-message-source.es.js",
"jsnext:main": "dist/react-message-source.es.js",
"typings": "dist/index.d.ts",
"engines": {
"node": ">=8",
"npm": ">=5"
},
"scripts": {
"test": "cross-env CI=1 react-scripts test --env=jsdom",
"test:watch": "react-scripts test --env=jsdom",
"coverage": "cross-env CI=1 react-scripts test --coverage --coverageReporters=text-lcov | coveralls",
"prebuild": "rimraf dist",
"build": "rollup -c",
"postbuild": "node ./scripts/flowgen.js",
"start": "rollup -c -w",
"prepare": "yarn run build",
"predeploy": "cd example && yarn install && yarn run build"
},
"dependencies": {
"hoist-non-react-statics": "^3.3.2",
"invariant": "^2.2.4"
},
"peerDependencies": {
"prop-types": "^15.5.10",
"react": ">=16.8.0"
},
"devDependencies": {
"@testing-library/react": "9.1.4",
"@types/hoist-non-react-statics": "^3.3.1",
"@types/invariant": "2.2.30",
"@types/jest": "24.0.18",
"@types/react": "16.9.2",
"@types/react-dom": "16.9.0",
"@types/react-test-renderer": "16.9.0",
"coveralls": "3.0.6",
"cross-env": "5.2.1",
"flowgen": "1.10.0",
"glob": "^7.1.4",
"prettier": "^1.18.2",
"prop-types": "^15.7.2",
"react": "16.9.0",
"react-dom": "16.9.0",
"react-scripts": "3.0.1",
"react-test-renderer": "16.9.0",
"rimraf": "3.0.0",
"rollup": "1.21.3",
"rollup-plugin-commonjs": "10.1.0",
"rollup-plugin-node-resolve": "5.2.0",
"rollup-plugin-peer-deps-external": "^2.2.0",
"rollup-plugin-typescript2": "0.24.2",
"tslib": "^1.10.0",
"tslint": "5.20.0",
"tslint-config-prettier": "^1.18.0",
"tslint-plugin-prettier": "^2.0.1",
"tslint-react": "^4.0.0",
"tslint-react-hooks": "2.2.1",
"typescript": "3.6.3"
},
"files": [
"dist"
]
}