-
Notifications
You must be signed in to change notification settings - Fork 20
/
package.json
69 lines (69 loc) · 1.81 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
{
"name": "react-globalize",
"version": "1.0.0",
"description": "Bringing the i18n functionality of Globalize, backed by CLDR, to React",
"main": "dist/index.js",
"module": "dist/index.esm.js",
"browser": "dist/index.umd.js",
"files": [
"dist/",
"examples/",
"LICENSE",
"README.md",
"src/"
],
"scripts": {
"build": "rollup -c",
"lint": "eslint rollup.config.js src test",
"test": "mocha test",
"prepublish": "npm run build"
},
"keywords": [
"react",
"globalize",
"i18n",
"internationalization",
"translation",
"date",
"currency",
"number",
"format",
"cldr"
],
"author": "jQuery Foundation and other contributors",
"homepage": "https://github.com/jquery-support/react-globalize",
"license": "MIT",
"repository": "jquery-support/react-globalize",
"bugs": "https://github.com/jquery-support/react-globalize/issues",
"dependencies": {
"globalize": "^1.0.0",
"react": "^16.0.0"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-eslint": "^8.0.1",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-preset-env": "^1.6.0",
"babel-preset-react": "^6.24.1",
"babel-register": "^6.7.2",
"chai": "^4.1.2",
"cldr-data": ">=25",
"cldrjs": "^0.4.3",
"create-react-class": "^15.5.2",
"enzyme": "^3.0.0",
"enzyme-adapter-react-16": "^1.0.1",
"eslint": "^1.10.3",
"eslint-config-defaults": "^7.1.1",
"eslint-plugin-react": "^3.11.2",
"globalize": "1.1.x",
"mocha": "^4.0.0",
"react": "^16.0.0",
"react-dom": "^16.0.0",
"react-test-renderer": "^16.0.0",
"rollup": "^0.50.0",
"rollup-plugin-babel": "^3.0.2",
"rollup-plugin-node-resolve": "^3.0.0",
"rollup-watch": "^4.3.1"
}
}