-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
49 lines (49 loc) · 1.29 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
{
"name": "@wardenfinance/currency",
"version": "1.1.0",
"private": true,
"description": "JavaScript library for utilizing fiat and crypto currencies.",
"main": "dist/index.js",
"scripts": {
"lint": "eslint . --ext .ts",
"lint:fix": "eslint . --ext .ts --fix",
"test": "jest",
"prebuild": "rimraf dist",
"build": "tsc -p tsconfig.json",
"postbuild": "node scripts/postbuild.js"
},
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/wardenfinance/currency.git"
},
"keywords": [
"currency",
"cryptocurrency",
"cryptocurrencies",
"cryptocurrency-price-ticker",
"fiat-currencies",
"fiat-currency"
],
"author": {
"name": "Matthew Downs",
"email": "matthew@warden.finance",
"url": "https://github.com/matthewdowns"
},
"contributors": [],
"license": "MIT",
"bugs": {
"url": "https://github.com/wardenfinance/currency/issues"
},
"homepage": "https://github.com/wardenfinance/currency#readme",
"devDependencies": {
"@types/jest": "^26.0.23",
"@types/node": "^16.0.1",
"@typescript-eslint/eslint-plugin": "^4.28.2",
"@typescript-eslint/parser": "^4.26.0",
"eslint": "^7.27.0",
"jest": "^27.0.3",
"rimraf": "^3.0.2",
"ts-jest": "^27.0.2",
"typescript": "^4.3.5"
}
}