-
Notifications
You must be signed in to change notification settings - Fork 15
/
package.json
82 lines (82 loc) · 1.95 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
74
75
76
77
78
79
80
81
82
{
"name": "@mirror-protocol/mirrorcli",
"version": "2.0.2",
"description": "Command-line interface for Mirror Protocol",
"main": "dist/bundle.node.js",
"typings": "dist/index.d.ts",
"author": "Mirror Protocol",
"license": "Apache-2.0",
"bin": {
"mirrorcli": "bin/mirrorcli"
},
"files": [
"dist",
"bin"
],
"engines": {
"node": ">=12"
},
"scripts": {
"build": "tsc --module commonjs && webpack --mode production",
"test": "jest",
"prettier": "prettier --write ./src/**/*.ts",
"lint": "eslint src --ext .js,.jsx,.ts,.tsx",
"doc": "typedoc",
"prepublishOnly": "npm run build"
},
"lint-staged": {
"./src/**/*.ts": [
"prettier --write",
"eslint"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"post-checkout": "npm i"
}
},
"prettier": {
"semi": true,
"singleQuote": true,
"trailingComma": "es5",
"arrowParens": "avoid"
},
"devDependencies": {
"@types/bluebird": "^3.5.33",
"@types/dot-prop": "^5.0.1",
"@types/lodash": "^4.14.165",
"@types/node": "^15",
"@types/yaml": "^1.9.7",
"@typescript-eslint/eslint-plugin": "^4.8.0",
"@typescript-eslint/parser": "^4.8.0",
"eslint": "^7.13.0",
"husky": "^4.3.0",
"jest": "^26.6.3",
"lint-staged": "^10.5.1",
"prettier": "^2.1.2",
"ts-jest": "^26.4.4",
"ts-loader": "^9.1.1",
"ts-node": "^9.0.0",
"tsconfig-paths-webpack-plugin": "^3.3.0",
"typedoc": "^0.20.36",
"typescript": "^4.2.4",
"webpack": "^5.4.0",
"webpack-cli": "^4.2.0"
},
"dependencies": {
"@mirror-protocol/mirror.js": "^1.1.7",
"@terra-money/terra.js": "^1.3.1",
"bluebird": "^3.7.2",
"chalk": "^4.1.0",
"commander": "^6.2.0",
"dot-prop": "^6.0.1",
"graphql": "^15.4.0",
"graphql-request": "^3.3.0",
"jsonschema": "^1.4.0",
"lodash": "^4.17.20",
"prettycli": "^1.4.3",
"yaml": "^1.10.0",
"yesno": "^0.3.1"
}
}