forked from formatjs/formatjs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
155 lines (155 loc) · 4.93 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
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
{
"name": "react-intl",
"version": "v3.0.0-beta-4",
"description": "Internationalize React apps. This library provides React components and an API to format dates, numbers, and strings, including pluralization and handling translations.",
"keywords": [
"intl",
"i18n",
"internationalization",
"locale",
"localization",
"globalization",
"react",
"reactjs",
"format",
"formatting",
"translate",
"translation"
],
"author": "Eric Ferraiuolo <[email protected]>",
"contributors": [
"Caridy Patino <[email protected]>",
"Marces Engel <[email protected]>"
],
"license": "BSD-3-Clause",
"homepage": "https://github.com/yahoo/react-intl",
"bugs": {
"url": "https://github.com/yahoo/react-intl/issues"
},
"repository": {
"type": "git",
"url": "[email protected]:yahoo/react-intl.git"
},
"main": "./lib/index.js",
"module": "./lib/index.es.js",
"jsnext:main": "./lib/index.es.js",
"browser": {
"./locale-data/index": false,
"./locale-data/index.js": false
},
"browserify-shim": {
"react": "global:React"
},
"jest": {
"testRegex": "/test/(unit|functional)/.*\\.js",
"testPathIgnorePatterns": [
"test/functional/support",
"/test/unit/testUtils"
],
"collectCoverageFrom": [
"src/**/*.js",
"!src/en.js"
],
"coverageReporters": [
"lcov",
"text",
"text-summary",
"html"
],
"coverageThreshold": {
"global": {
"branches": 85,
"functions": 100,
"lines": 95,
"statements": 95
}
},
"setupTestFrameworkScriptFile": "./test/setup.js"
},
"dependencies": {
"hoist-non-react-statics": "^3.3.0",
"intl-format-cache": "^2.0.5",
"intl-messageformat": "^2.1.0",
"intl-relativeformat": "^2.1.0",
"invariant": "^2.1.1",
"react-display-name": "^0.2.4",
"react-is": "^16.3.1"
},
"peerDependencies": {
"prop-types": "^15.5.4",
"react": "^16.3.1"
},
"devDependencies": {
"@babel/cli": "^7.1.2",
"@babel/core": "^7.1.2",
"@babel/node": "^7.0.0",
"@babel/plugin-proposal-class-properties": "^7.1.0",
"@babel/plugin-proposal-object-rest-spread": "^7.0.0",
"@babel/plugin-transform-async-to-generator": "^7.1.0",
"@babel/plugin-transform-modules-commonjs": "^7.1.0",
"@babel/preset-env": "^7.1.0",
"@babel/preset-react": "^7.0.0",
"babel-core": "^7.0.0-bridge.0",
"babel-eslint": "^7.1.1",
"babel-jest": "^23.6.0",
"babel-plugin-react-intl": "^2.0.0",
"babel-plugin-transform-member-expression-literals": "^6.9.4",
"babel-plugin-transform-property-literals": "^6.9.4",
"babel-plugin-transform-react-remove-prop-types": "^0.4.18",
"babelify": "^7.2.0",
"benchmark": "^2.1.0",
"browserify": "^14.0.0",
"browserify-shim": "^3.8.11",
"cross-env": "^4.0.0",
"enzyme": "^3.6.0",
"enzyme-adapter-react-16": "^1.5.0",
"eslint": "^3.10.2",
"eslint-plugin-react": "^7.0.1",
"expect": "^1.9.0",
"express": "^4.13.3",
"formatjs-extract-cldr-data": "^6.0.0",
"glob": "^7.0.0",
"intl": "^1.2.1",
"intl-messageformat-parser": "^1.2.0",
"jest": "^23.6.0",
"mkdirp": "^0.5.1",
"prettier": "^1.6.1",
"progress": "^2.0.3",
"promise-queue": "^2.2.5",
"prop-types": "^15.6.1",
"react": "^16.3.1",
"react-dom": "^16.3.3",
"rimraf": "^2.4.2",
"rollup": "^0.66.2",
"rollup-plugin-babel": "^4.0.3",
"rollup-plugin-commonjs": "^9.1.8",
"rollup-plugin-node-resolve": "^3.4.0",
"rollup-plugin-replace": "^2.0.0",
"rollup-plugin-uglify": "^6.0.0",
"rollup-plugin-virtual": "^1.0.1",
"serialize-javascript": "^1.5.0",
"superagent": "^3.0.0",
"watchify": "^3.7.0"
},
"scripts": {
"format": "prettier --write --single-quote --trailing-comma=es5 --bracket-spacing false *.js scripts/*.js src/{*.js,**/*.js}",
"clean": "rimraf src/en.js coverage/ dist/ lib/ locale-data/ test/renderer.js",
"build:data": "babel-node scripts/build-data",
"build:lib": "rollup -c rollup.config.lib.js",
"build:dist:dev": "cross-env NODE_ENV=development rollup -c rollup.config.dist.js",
"build:dist:prod": "cross-env NODE_ENV=production rollup -c rollup.config.dist.js",
"build:dist": "yarn run build:dist:dev && yarn run build:dist:prod",
"build": "yarn run build:data && yarn run build:lib && yarn run build:dist",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"test": "jest --coverage --verbose",
"test:react": "jest",
"test:all": "yarn run lint && yarn run test && yarn run test:react",
"test:watch": "jest --watch",
"test:perf": "cross-env NODE_ENV=production babel-node test/perf",
"examples:install": "babel-node scripts/examples yarn install",
"examples:link": "yarn link && babel-node scripts/examples yarn link react-intl",
"preversion": "yarn run clean && yarn run build && yarn run test:all",
"prepare": "yarn run clean && yarn run build"
}
}