This repository has been archived by the owner on Jan 10, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
78 lines (78 loc) · 1.98 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
{
"name": "@parsify/currencies",
"version": "0.0.3",
"description": "Parsify plugin for currency conversion",
"main": "dist/index.js",
"module": "dist/index.esm.js",
"types": "dist/index.d.ts",
"files": [
"dist/**/*"
],
"author": "Antoni Kepinski <[email protected]> (https://kepinski.me)",
"bugs": {
"url": "https://github.com/parsify/currencies/issues"
},
"scripts": {
"prebuild": "del-cli dist",
"esm": "tsc --module esnext && cpy dist/index.js dist --rename index.esm.js",
"cjs": "tsc --module commonjs",
"build": "npm run esm && npm run cjs",
"test": "xo && nyc ava",
"prepublishOnly": "npm run build"
},
"engines": {
"node": ">=10"
},
"license": "MIT",
"repository": "parsify/currencies",
"homepage": "https://github.com/parsify/currencies",
"keywords": [
"parsify",
"@parsify/currencies",
"parsify-plugin",
"plugin",
"expression-parser",
"parser",
"expression",
"currency",
"currencies",
"currency-conversion",
"api",
"exchange-rates",
"money",
"cashify"
],
"devDependencies": {
"@akepinski/tsconfig": "0.0.2",
"@typescript-eslint/eslint-plugin": "^2.23.0",
"@typescript-eslint/parser": "^2.23.0",
"ava": "^3.5.0",
"coveralls": "^3.0.9",
"cpy-cli": "^3.1.0",
"del-cli": "^3.0.0",
"eslint-config-xo-typescript": "^0.26.0",
"nyc": "^15.0.0",
"ts-node": "^8.6.2",
"typescript": "^3.8.3",
"xo": "^0.28.0"
},
"sideEffects": false,
"ava": {
"extensions": [
"ts"
],
"require": [
"ts-node/register"
]
},
"xo": {
"extends": "xo-typescript",
"extensions": [
"ts"
]
},
"dependencies": {
"cashify": "^2.4.1",
"currency.js": "^1.2.2"
}
}