-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
70 lines (70 loc) · 1.62 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
{
"name": "@brixtol/currency-symbol-placements",
"version": "1.2.2",
"description": "Mappings for Currency Symbol placements using currency.js patterns",
"author": {
"name": "Νίκος Σαβίδης ",
"email": "[email protected]",
"url": "https://github.com/brixtol/currency-symbol-placements"
},
"license": "MIT",
"main": "./package/index.js",
"exports": {
"require": "./package/index.js",
"import": "./package/index.es.js"
},
"types": "./package/index.d.ts",
"keywords": [
"currency",
"mappings",
"country",
"3166-1 alpha-2",
"ISO 4217"
],
"repository": {
"type": "git",
"url": "https://github.com/brixtol/currency-symbol-placements"
},
"bugs": {
"url": "https://github.com/brixtol/currency-symbol-placements"
},
"engines": {
"pnpm": ">=5"
},
"scripts": {
"dev": "rollup -c -w",
"build": "rollup -c --environment prod",
"test": "ava --watch --verbose",
"test:build": "ava --verbose"
},
"prettier": "@brixtol/prettier-config",
"eslintConfig": {
"ignorePatterns": "package",
"extends": "@brixtol/eslint-config",
"rules": {
"no-unused-vars": "off"
}
},
"ava": {
"require": [
"esm"
],
"files": [
"test/*.js"
],
"concurrency": 5
},
"devDependencies": {
"@brixtol/eslint-config": "^1.0.1",
"@brixtol/prettier-config": "^1.2.1",
"@brixtol/rollup-config": "^1.4.0",
"@brixtol/tsconfig": "^1.2.0",
"ava": "^3.15.0",
"esm": "^3.2.25",
"typescript": "^4.5.2"
},
"dependencies": {
"@brixtol/currency-codes": "^1.2.1",
"@brixtol/tsutils": "^1.4.1"
}
}