-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
41 lines (41 loc) · 948 Bytes
/
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
{
"name": "intl-dateformat",
"version": "0.2.0-0",
"description": "Format a date using Intl.DateTimeFormat goodness.",
"main": "lib/index.js",
"module": "lib/index.mjs",
"typings": "lib/index.d.js",
"repository": "zapier/intl-dateformat",
"author": "Nicolas Gryman <[email protected]>",
"license": "MIT",
"scripts": {
"prepare": "npm run build",
"build": "rollup -c",
"test": "NODE_ICU_DATA=$(node-full-icu-path) TZ=UTC nyc ava"
},
"files": [
"lib/"
],
"keywords": [
"date",
"format",
"timezone",
"offset",
"i18n",
"l10n",
"locale",
"Intl.DateTimeFormat"
],
"devDependencies": {
"ava": "^3.11.1",
"full-icu": "^1.3.1",
"nyc": "^15.1.0",
"prettier": "^2.0.5",
"rollup": "^2.23.1",
"rollup-plugin-typescript2": "^0.27.2",
"ts-node": "^8.10.2",
"tslint": "^6.1.3",
"tslint-config-prettier": "^1.18.0",
"typescript": "^3.9.7"
}
}