-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
73 lines (73 loc) · 2.59 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
63
64
65
66
67
68
69
70
71
72
73
{
"name": "symbol-wallet-lib",
"version": "0.1.0",
"description": "",
"main": "./dist/cjs/index.js",
"module": "./dist/esm/index.js",
"umd:main": "./dist/umd/index.js",
"types": "./dist/types/index.d.js",
"scripts": {
"postinstall": "husky install",
"prepublishOnly": "pinst --disable",
"postpublish": "pinst --enable",
"build": "npm run build:cjs && npm run build:esm && npm run build:umd && npm run build:types",
"build:cjs": "node tools/cleanup cjs && tsc -p config/tsconfig.cjs.json",
"build:esm": "node tools/cleanup esm && tsc -p config/tsconfig.esm.json",
"build:umd": "node tools/cleanup umd && webpack --config config/webpack.config.js",
"build:types": "node tools/cleanup types && tsc -p config/tsconfig.types.json",
"clean": "node tools/cleanup",
"package": "npm run build && npm pack",
"test": "jest --no-cache --runInBand",
"test:cov": "jest --coverage --no-cache --runInBand",
"lint": "eslint . --ext .ts,.tsx,.js,.jsx,.json --max-warnings 0",
"lint:fix": "eslint . --ext .ts,.tsx,.js,.jsx,.json --fix",
"addscope": "node tools/packagejson name symbol-wallet-lib"
},
"publishConfig": {
"access": "public"
},
"files": [
"dist"
],
"keywords": [
"symbol",
"wallet",
"extension",
"lib"
],
"author": "Symbol Contributors <contributors@symbol.dev>",
"license": "MIT",
"homepage": "https://github.com/OlegMakarenko/symbol-extension-wallet-lib",
"repository": {
"type": "git",
"url": "git@github.com:OlegMakarenko/symbol-extension-wallet-lib.git"
},
"bugs": {
"url": "https://github.com/OlegMakarenko/symbol-extension-wallet-lib/issues"
},
"dependencies": {
"@types/node": "^20.12.12"
},
"devDependencies": {
"@commitlint/cli": "^19.3.0",
"@commitlint/config-conventional": "^19.2.2",
"@types/jest": "^29.5.12",
"@types/lodash": "^4.17.1",
"@typescript-eslint/eslint-plugin": "^7.9.0",
"@typescript-eslint/parser": "^7.9.0",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.1.3",
"husky": "^9.0.11",
"jest": "^29.7.0",
"jest-chrome": "^0.8.0",
"jest-environment-jsdom": "^29.7.0",
"pinst": "^3.0.0",
"prettier": "^3.2.5",
"ts-jest": "^29.1.2",
"ts-loader": "^9.5.1",
"typescript": "^5.4.5",
"webpack": "^5.91.0",
"webpack-cli": "^5.1.4"
}
}