-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
91 lines (91 loc) · 1.85 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
{
"name": "messageformat",
"version": "2.3.0",
"description": "PluralFormat and SelectFormat Message and i18n Tool - A JavaScript Implemenation of the ICU standards.",
"keywords": [
"i18n",
"pluralformat",
"icu",
"gettext",
"choiceformat",
"selectformat",
"messageformat",
"internationalization"
],
"author": "Alex Sexton <[email protected]>",
"contributors": [
"Eemeli Aro <[email protected]>"
],
"license": "MIT",
"homepage": "https://messageformat.github.io/messageformat/",
"repository": "messageformat/messageformat",
"main": "index.js",
"browser": "./messageformat.js",
"files": [
"index.d.ts",
"lib",
"messageformat.js",
"messageformat.js.map",
"messages.js"
],
"babel": {
"presets": [
[
"@babel/preset-env",
{
"targets": {
"node": "6.5.0"
}
}
]
],
"plugins": [
[
"@babel/plugin-proposal-class-properties",
{
"loose": true
}
]
]
},
"eslintConfig": {
"env": {
"commonjs": true,
"es6": true
},
"overrides": [
{
"files": [
"src/*.js"
],
"parser": "babel-eslint"
},
{
"files": [
"webpack.config.js"
],
"env": {
"node": true
}
}
]
},
"dependencies": {
"make-plural": "^4.3.0",
"messageformat-formatters": "^2.0.1",
"messageformat-parser": "^4.1.2"
},
"devDependencies": {
"@babel/cli": "^7.4.4",
"@babel/core": "^7.4.5",
"@babel/plugin-proposal-class-properties": "^7.4.4",
"@babel/preset-env": "^7.4.5",
"babel-loader": "^8.0.6",
"webpack": "^4.32.2",
"webpack-cli": "^3.3.2"
},
"scripts": {
"prebuild": "babel src -d lib",
"build": "webpack --mode production"
}
}