forked from formatjs/formatjs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
144 lines (144 loc) · 4.66 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
{
"name": "react-intl",
"version": "2.1.5",
"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]>"
],
"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/"
],
"collectCoverageFrom": [
"src/**/*.js",
"!src/en.js"
],
"coverageReporters": [
"lcov",
"text",
"text-summary",
"html"
],
"coverageThreshold": {
"global": {
"branches": 85,
"functions": 100,
"lines": 95,
"statements": 95
}
}
},
"dependencies": {
"intl-format-cache": "^2.0.5",
"intl-messageformat": "^1.3.0",
"intl-relativeformat": "^1.3.0",
"invariant": "^2.1.1"
},
"peerDependencies": {
"react": "^0.14.0 || ^15.0.0-0"
},
"devDependencies": {
"babel-cli": "^6.2.0",
"babel-eslint": "^7.1.1",
"babel-jest": "^16.0.0",
"babel-plugin-react-intl": "^2.0.0",
"babel-plugin-transform-class-properties": "^6.11.5",
"babel-plugin-transform-es2015-modules-commonjs": "^6.4.0",
"babel-plugin-transform-es3-member-expression-literals": "^6.3.13",
"babel-plugin-transform-es3-property-literals": "^6.3.13",
"babel-plugin-transform-object-rest-spread": "^6.1.18",
"babel-plugin-transform-react-remove-prop-types": "^0.2.10",
"babel-polyfill": "^6.3.14",
"babel-preset-es2015": "^6.1.18",
"babel-preset-es2015-rollup": "^1.1.1",
"babel-preset-react": "^6.1.18",
"babelify": "^7.2.0",
"benchmark": "^2.1.0",
"browserify": "^13.0.0",
"browserify-shim": "^3.8.11",
"cross-env": "^2.0.0",
"eslint": "^3.10.2",
"eslint-plugin-react": "^6.2.0",
"expect": "^1.9.0",
"expect-jsx": "^2.2.1",
"express": "^4.13.3",
"formatjs-extract-cldr-data": "^2.0.0",
"glob": "^7.0.0",
"intl": "^1.2.1",
"intl-messageformat-parser": "^1.2.0",
"jest": "^17.0.3",
"mkdirp": "^0.5.1",
"react": "^15.0.0",
"react-addons-test-utils": "^15.0.0",
"react-dom": "^15.0.0",
"react-router": "^2.0.0",
"rimraf": "^2.4.2",
"rollup": "^0.36.0",
"rollup-plugin-babel": "^2.3.9",
"rollup-plugin-commonjs": "^5.0.4",
"rollup-plugin-memory": "^2.0.0",
"rollup-plugin-node-resolve": "^2.0.0",
"rollup-plugin-replace": "^1.1.0",
"rollup-plugin-uglify": "^1.0.0",
"serialize-javascript": "^1.1.1",
"superagent": "^3.0.0",
"watchify": "^3.7.0"
},
"scripts": {
"clean": "rimraf src/en.js coverage/ dist/ lib/ locale-data/",
"build:data": "babel-node scripts/build-data",
"build:lib": "babel-node scripts/build-lib",
"build:dist:dev": "cross-env NODE_ENV=development babel-node scripts/build-dist",
"build:dist:prod": "cross-env NODE_ENV=production babel-node scripts/build-dist",
"build:dist": "npm run build:dist:dev && npm run build:dist:prod",
"build": "npm run build:data && npm run build:lib && npm run build:dist",
"react:clean": "rimraf node_modules/{react,react-dom,react-addons-test-utils}",
"react:14": "npm run react:clean && npm i react@^0.14 react-dom@^0.14 react-addons-test-utils@^0.14",
"react:15": "npm run react:clean && npm i react@^15 react-dom@^15 react-addons-test-utils@^15",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"test": "jest --coverage --verbose",
"test:react": "npm run react:14 && jest && npm run react:15 && jest",
"test:all": "npm run lint && npm run test && npm run test:react",
"test:watch": "jest --watch",
"test:perf": "cross-env NODE_ENV=production babel-node test/perf",
"preversion": "npm run clean && npm run build && npm run test:all",
"postversion": "echo 'Uninstall react-router to fix npm issue' && npm uninstall react-router",
"prepublish": "npm run clean && npm run build"
}
}