This repository was archived by the owner on May 26, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.4 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 1.4 KB
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
{
"name": "intl-format-cache",
"version": "2.2.0",
"description": "A memoizer factory for Intl format constructors.",
"main": "index.js",
"module": "lib/index.js",
"typings": "lib/index.d.ts",
"scripts": {
"build": "tsc -p src && tsc -p src/tsconfig.cjs.json",
"clean": "rimraf lib dist",
"cover": "nyc npm t",
"prepublishOnly": "npm run clean && npm run build",
"prettier": "prettier --write {src,tests}/*.ts",
"test": "TS_NODE_PROJECT='tests/tsconfig.json' mocha -r ts-node/register -r source-map-support/register -r chai/register-expect tests/index.ts --reporter spec"
},
"repository": {
"type": "git",
"url": "https://github.com/yahoo/intl-format-cache.git"
},
"keywords": [
"intl",
"i18n"
],
"author": "Eric Ferraiuolo <eferraiuolo@gmail.com>",
"license": "BSD-3-Clause",
"bugs": {
"url": "https://github.com/yahoo/intl-format-cache/issues"
},
"homepage": "https://github.com/yahoo/intl-format-cache",
"dependencies": {},
"devDependencies": {
"@types/chai": "^4.1.7",
"@types/mocha": "^5.2.6",
"chai": "^4.2.0",
"intl": "^1.0.1",
"intl-messageformat": "3",
"intl-relativeformat": "^2.1.0",
"mocha": "^6.1.0",
"nyc": "^14.1.1",
"prettier": "^1.17.1",
"rimraf": "^2.6.3",
"source-map-support": "^0.5.12",
"ts-node": "^8.2.0",
"typescript": "^3.4.5"
},
"prettier": {
"singleQuote": true
}
}