-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
46 lines (46 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
{
"name": "zerocryptopay",
"version": "1.0.0",
"description": "Wrapper for Zerocryptopay API",
"main": "dist/cjs/index.js",
"module": "dist/cjs/index.js",
"types": "dist/esm/index.js",
"scripts": {
"start": "webpack --watch",
"build": "rm -rf dist/ && npm run build:esm && npm run build:cjs",
"build:esm": "tsc --outDir dist/esm",
"build:cjs": "tsc --module CommonJS --outDir dist/cjs",
"prepare": "npm run build",
"test": "jest",
"lint": "eslint ."
},
"repository": {
"type": "git",
"url": "https://github.com/Altmaer/zerocryptopay"
},
"author": "Altmaer (https://altmaer.com)",
"license": "MIT",
"devDependencies": {
"@babel/preset-typescript": "^7.21.0",
"@types/jest": "^29.4.0",
"@typescript-eslint/eslint-plugin": "^5.54.1",
"@typescript-eslint/parser": "^5.54.1",
"dotenv": "^16.0.3",
"eslint": "^8.35.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-prettier": "^8.7.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-jest": "^27.2.1",
"jest": "^29.5.0",
"prettier": "^2.8.4",
"ts-jest": "^29.0.5",
"ts-loader": "^9.4.2",
"ts-node": "^10.9.1",
"typescript": "^4.9.5",
"webpack": "^5.75.0",
"webpack-cli": "^5.0.1"
},
"dependencies": {
"axios": "^1.3.4"
}
}