-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 1.39 KB
/
package.json
File metadata and controls
63 lines (63 loc) · 1.39 KB
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
{
"name": "@edexa/edexajs",
"version": "1.0.0",
"description": "",
"main": "dist/index.js",
"scripts": {
"build": "rm -rf dist && tsc && webpack",
"test": "mocha -r ts-node/register test/**/*.ts --timeout 100000 ",
"lint": "eslint . --fix",
"format": "prettier --write ."
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,ts,tsx}": [
"npm run lint",
"npm run format",
"git add"
]
},
"author": "edeXa",
"repository": {
"type": "git",
"url": "https://github.com/devEdexa/edexa.js"
},
"license": "ISC",
"devDependencies": {
"@babel/core": "^7.23.6",
"@babel/preset-env": "^7.23.6",
"@types/mocha": "^10.0.6",
"@types/node": "^20.5.4",
"babel-loader": "^9.1.3",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.1.2",
"husky": "^8.0.3",
"install": "^0.13.0",
"lint-staged": "^15.2.0",
"nodemon": "^3.0.1",
"npm": "^10.2.5",
"prettier": "^3.1.1",
"ts-loader": "^9.5.1",
"ts-node": "^10.9.1",
"typescript": "^5.1.6",
"webpack": "^5.89.0",
"webpack-cli": "^5.1.4",
"chai": "^4.3.10",
"dotenv": "^16.3.1",
"mocha": "^10.2.0"
},
"dependencies": {
"ethers": "^5.7.2",
"path": "^0.12.7"
},
"keywords": [
"edexajs",
"edexasdk",
"edexablockchain"
]
}