-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
35 lines (35 loc) · 979 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
{
"name": "@nephos/wallet-utils",
"version": "1.0.0",
"description": "",
"main": "lib/index.js",
"typings": "lib/index.d.ts",
"publishConfig": {
"access": "public"
},
"scripts": {
"build": "tsc",
"coverage": "vitest run --coverage",
"dev": "vitest",
"lint": "eslint -c .eslintrc.js \"./src/**/*.ts\" --ignore-path .gitignore",
"lint:fix": "eslint -c .eslintrc.js \"./src/**/*.ts\" --fix --ignore-path .gitignore",
"test": "vitest run"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@types/node": "~20.11.10",
"@typescript-eslint/eslint-plugin": "^6.19.1",
"@typescript-eslint/parser": "^6.19.1",
"@vitest/browser": "^1.2.2",
"@vitest/coverage-istanbul": "^1.2.2",
"@vitest/coverage-v8": "^1.2.2",
"eslint": "^8.56.0",
"eslint-plugin-prettier": "^5.1.3",
"prettier": "^3.2.4",
"typescript": "^5.3.3",
"vitest": "^1.2.2",
"webdriverio": "^8.30.0"
}
}