-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
67 lines (67 loc) · 2.12 KB
/
package.json
File metadata and controls
67 lines (67 loc) · 2.12 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
64
65
66
67
{
"name": "@windingtree/lpms-cli",
"version": "0.0.0-semantic-release",
"description": "LPMS API CLI",
"publishConfig": {
"access": "public"
},
"main": "dist/index.js",
"types": "dist/src/index.d.ts",
"files": [
"dist"
],
"bin": {
"lpms": "dist/index.js"
},
"scripts": {
"prepare": "husky install",
"commit": "git-cz -S",
"build": "rm -rf dist && npx tsc -p tsconfig-build.json && npx webpack --config webpack.config.js",
"test": "npx mocha -r ts-node/register test/**/*.spec.ts",
"lint": "npx eslint . --ext .ts",
"lint:fix": "npx eslint . --ext .ts --fix && npx prettier --write .",
"changelog": "conventional-changelog -p angular -r 2 -i CHANGELOG.md -s",
"prepublish": "npx typechain --target ethers-v5 --out-dir ./typechain './node_modules/@windingtree/videre-contracts/artifacts/contracts/**/*.json'"
},
"devDependencies": {
"@commitlint/cli": "^17.0.2",
"@commitlint/config-conventional": "^17.0.2",
"@typechain/ethers-v5": "^10.1.0",
"@types/chai": "^4.3.1",
"@types/luxon": "^2.3.2",
"@types/mocha": "^9.1.1",
"@types/node": "^18.0.0",
"@typescript-eslint/eslint-plugin": "^5.29.0",
"@typescript-eslint/parser": "^5.29.0",
"@windingtree/stays-models": "^2.3.0",
"@windingtree/videre-contracts": "^2.0.0",
"@windingtree/videre-sdk": "^0.7.2",
"axios": "^0.27.2",
"chai": "^4.3.6",
"commander": "^9.3.0",
"conf": "^10.1.2",
"conventional-changelog-cli": "^2.2.2",
"eslint": "^8.18.0",
"eslint-config-prettier": "^8.5.0",
"eslint-config-standard": "^17.0.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-promise": "^6.0.0",
"ethers": "^5.6.9",
"git-cz": "^4.9.0",
"husky": "^8.0.1",
"kleur": "^4.1.4",
"luxon": "^2.4.0",
"mocha": "^10.0.0",
"ora": "^5.4.1",
"prettier": "^2.7.1",
"ts-loader": "^9.3.1",
"ts-node": "^10.8.1",
"typechain": "^8.1.0",
"typescript": "^4.7.4",
"webpack": "^5.73.0",
"webpack-cli": "^4.10.0",
"webpack-node-externals": "^3.0.0"
}
}