-
-
Notifications
You must be signed in to change notification settings - Fork 19
/
package.json
90 lines (90 loc) · 2.17 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
82
83
84
85
86
87
88
89
90
{
"name": "cashify",
"version": "3.0.1",
"description": "Lightweight currency conversion library, successor of money.js",
"main": "dist/index.js",
"type": "module",
"types": "dist/index.d.ts",
"files": [
"dist/**/*"
],
"author": "Antoni Kępiński <[email protected]> (https://www.kepinski.ch)",
"bugs": {
"url": "https://github.com/xxczaki/cashify/issues"
},
"scripts": {
"prebuild": "del-cli dist",
"build": "tsc",
"test": "xo && c8 --reporter=lcov ava",
"prepublishOnly": "npm run build"
},
"engines": {
"node": ">=14"
},
"license": "MIT",
"repository": "xxczaki/cashify",
"homepage": "https://github.com/xxczaki/cashify",
"funding": {
"type": "opencollective",
"url": "https://opencollective.com/cashify"
},
"keywords": [
"cashify",
"cash",
"moneyjs",
"money.js",
"money",
"conversion",
"exchange",
"currency-exchange",
"exchange-rates",
"open-exchange-rates",
"fixer",
"currencies",
"convert-currency-rates",
"replacement",
"convert-currencies",
"typescript",
"money-conversion"
],
"devDependencies": {
"@sindresorhus/tsconfig": "^2.0.0",
"@types/node": "^16.11.6",
"ava": "^3.15.0",
"big.js": "^6.1.1",
"c8": "^7.10.0",
"coveralls": "^3.1.1",
"del-cli": "^4.0.1",
"ts-node": "^10.4.0",
"typescript": "^4.4.4",
"xo": "^0.46.4"
},
"sideEffects": false,
"ava": {
"extensions": {
"ts": "module"
},
"nonSemVerExperiments": {
"configurableModuleFormat": true
},
"nodeArguments": [
"--loader=ts-node/esm"
]
},
"xo": {
"rules": {
"@typescript-eslint/naming-convention": "off"
}
},
"dependencies": {
"@types/big.js": "^6.1.2"
},
"peerDependencies": {
"big.js": ">=6.1.1"
},
"peerDependenciesMeta": {
"big.js": {
"optional": true
}
}
}