This repository has been archived by the owner on May 23, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 77
/
Copy pathpackage.json
81 lines (81 loc) · 2.44 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
{
"name": "intl-messageformat",
"version": "3.1.0",
"description": "Formats ICU Message strings with number, date, plural, and select placeholders to create localized messages.",
"keywords": [
"i18n",
"intl",
"internationalization",
"localization",
"globalization",
"messageformat",
"parser",
"plural",
"icu"
],
"author": "Eric Ferraiuolo <[email protected]>",
"contributors": [
"Anthony Pipkin <[email protected]>",
"Caridy Patino <[email protected]>",
"Drew Folta <[email protected]>",
"Long Ho <[email protected]"
],
"bugs": {
"url": "https://github.com/formatjs/intl-messageformat/issues"
},
"repository": {
"type": "git",
"url": "[email protected]:formatjs/intl-messageformat.git"
},
"main": "index.js",
"module": "lib/index.js",
"typings": "lib/index.d.ts",
"dependencies": {
"intl-messageformat-parser": "1.6.2"
},
"devDependencies": {
"@istanbuljs/nyc-config-typescript": "^0.1.3",
"@types/benchmark": "^1.0.31",
"@types/chai": "^4.1.7",
"@types/fs-extra": "^7.0.0",
"@types/mocha": "^5.2.6",
"benchmark": "^2.0.0",
"chai": "^4.2.0",
"fs-extra": "^8.0.1",
"intl": "^1.2.0",
"intl-pluralrules": "^1.0.1",
"mocha": "^6.0.0",
"nyc": "^14.1.1",
"prettier": "^1.17.1",
"rimraf": "^2.6.3",
"rollup": "^1.12.2",
"rollup-plugin-commonjs": "^10.0.0",
"rollup-plugin-node-resolve": "^5.0.0",
"rollup-plugin-typescript": "^1.0.1",
"rollup-plugin-uglify": "^6.0.2",
"source-map-support": "^0.5.12",
"ts-node": "^8.1.0",
"tslib": "^1.9.3",
"typescript": "^3.4.5"
},
"scripts": {
"benchmark": "ts-node --project tsconfig.all.json tests/benchmark",
"build": "npm run clean && tsc && npm run prettier && npm run rollup",
"rollup": "rollup -c rollup.config.js",
"clean": "rimraf dist lib",
"cover": "nyc npm t",
"prepublishOnly": "npm run build",
"prettier": "prettier --write '{src,tests,scripts}/**/*.ts' 'rollup.config.js'",
"test": "TS_NODE_COMPILER_OPTIONS='{\"module\": \"commonjs\"}' mocha -r ts-node/register -r source-map-support/register -r chai/register-expect tests/index.ts --reporter spec",
"travis": "npm run build && npm run cover"
},
"homepage": "https://github.com/formatjs/intl-messageformat",
"directories": {
"test": "tests"
},
"license": "BSD-3-Clause",
"prettier": {
"parser": "typescript",
"singleQuote": true
}
}