-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
62 lines (62 loc) · 1.63 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
{
"name": "intl-number-helper",
"version": "1.2.3",
"description": "Configure Intl.NumberFormat with a string pattern",
"keywords": [
"intl",
"number",
"format",
"currency",
"locale",
"i18n",
"l10n",
"javascript",
"typescript",
"country",
"iso"
],
"author": "Thiago Delgado Pinto",
"license": "MIT",
"bugs": {
"url": "https://github.com/thiagodp/intl-number-helper/issues"
},
"homepage": "https://github.com/thiagodp/intl-number-helper",
"repository": {
"type": "git",
"url": "git+https://github.com/thiagodp/intl-number-helper.git"
},
"files": [
"index.*"
],
"source": "src/index.ts",
"main": "index.js",
"browser": "index.umd.js",
"unpkg": "index.umd.js",
"module": "index.esm.js",
"types": "index.d.ts",
"scripts": {
"clean": "npx del *.map *.d.ts index*.js index*.mjs",
"prebuild": "npm run clean",
"build": "microbundle --globals country-to-currency=countryToCurrency --external none --no-sourcemap",
"pretest": "npm run clean",
"test": "jest",
"precov": "npm run clean",
"cov": "jest --coverage",
"precoveralls": "npm run clean",
"coveralls": "jest --coverage && coveralls < coverage/lcov.info",
"all": "npm run cov && npm run build",
"preversion": "npm run all",
"postversion": "echo \"Please don't forget: git push && git push --tags && npm publish\""
},
"dependencies": {
"country-to-currency": "^1.1.5"
},
"devDependencies": {
"@types/jest": "^26.0.22",
"del-cli": "^5.1.0",
"jest": "^26.6.3",
"microbundle": "^0.15.1",
"ts-jest": "^26.5.5",
"typescript": "^3.9.9"
}
}