-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
62 lines (62 loc) · 1.78 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": "bitpay-rates",
"version": "1.2.18",
"description": "A tiny Node.js wrapper for the BitPay Rates API",
"engines": {
"node": ">=12"
},
"keywords": [
"bitcoin",
"bitpay",
"rates",
"countries",
"price"
],
"author": "Mario Colque <[email protected]>",
"license": "MIT",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"repository": {
"type": "git",
"url": "https://github.com/colkito/bitpay-rates.git"
},
"bugs": {
"url": "https://github.com/colkito/bitpay-rates/issues"
},
"homepage": "https://github.com/colkito/bitpay-rates#readme",
"scripts": {
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"build": "tsc --declaration && tsc --removeComments && npm run minifyDeclarations && npm run minify",
"format": "prettier --write \"src/**/*.ts\"",
"lint": "tsc --noEmit && eslint '*/**/*.{js,ts}' --quiet --fix",
"minify": "jsmin -l 3 -o dist/index.js dist/index.js",
"minifyDeclarations": "jsmin -l 3 -o dist/index.d.ts dist/index.d.ts",
"prepublishOnly": "npm test && npm run lint && npm run build",
"preversion": "npm run lint",
"version": "npm run format && git add -A src package.json",
"postversion": "git push && git push --tags"
},
"devDependencies": {
"@types/jest": "^26.0.21",
"@types/node": "^14.14.37",
"@typescript-eslint/eslint-plugin": "^4.18.0",
"@typescript-eslint/parser": "^4.18.0",
"eslint": "^7.21.0",
"eslint-config-prettier": "^8.1.0",
"eslint-plugin-prettier": "^3.3.1",
"jest": "^26.6.3",
"jsmin": "^1.0.1",
"nock": "^13.0.11",
"prettier": "^2.2.1",
"ts-jest": "^26.5.4",
"typescript": "^4.2.3"
},
"resolutions": {
"json-schema": "^0.4.0"
},
"files": [
"dist/**/*"
]
}