-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
49 lines (49 loc) · 1011 Bytes
/
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": "node-nowpayments-api",
"version": "0.4.2",
"description": "Node NowPayments API client",
"main": "dist/index.js",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"keywords": [
"nowpayments",
"axios",
"rest",
"rest api",
"node",
"nodejs",
"promise"
],
"author": "Re4GD",
"license": "MIT",
"files": [
"src/*",
"dist/*"
],
"publishConfig": {
"access": "public"
},
"scripts": {
"build": "tsup src/index.ts --format cjs,esm --dts",
"lint": "tsc",
"test": "dotenv -- jest",
"changeset": "changeset",
"changeset:status": "changeset status --verbose",
"changeset:version": "changeset version",
"changeset:publish": "changeset publish --no-git-tag"
},
"dependencies": {
"axios": "^1.3.2"
},
"devDependencies": {
"@changesets/cli": "^2.26.0",
"@types/jest": "^29.4.0",
"@types/node": "^18.13.0",
"dotenv-cli": "^7.0.0",
"jest": "^29.4.2",
"prettier": "^2.8.3",
"ts-jest": "^29.0.5",
"tsup": "^6.5.0",
"typescript": "^4.9.5"
}
}