-
Notifications
You must be signed in to change notification settings - Fork 33
/
package.json
84 lines (84 loc) · 2.08 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
83
84
{
"name": "@mirror-protocol/mirror.js",
"version": "2.0.0",
"description": "The JavaScript SDK for Mirror Protocol",
"license": "Apache-2.0",
"author": "Mirror Protocol",
"keywords": [
"terra",
"crypto",
"blockchain",
"smart-contracts"
],
"repository": {
"type": "git",
"url": "git://github.com/Mirror-Protocol/mirror.js"
},
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"files": [
"dist"
],
"engines": {
"node": ">=14"
},
"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",
"integration-test": "ts-node ./integration-test/index.ts"
},
"peerDependencies": {
"@terra-money/terra.js": "^1"
},
"lint-staged": {
"./src/**/*.ts": [
"prettier --write",
"eslint"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"post-checkout": "npm ci"
}
},
"prettier": {
"semi": true,
"singleQuote": true,
"trailingComma": "none",
"arrowParens": "always"
},
"devDependencies": {
"@terra-money/terra.js": "^1.3.6",
"@types/jest": "^26.0.20",
"@types/node": "^15",
"@typescript-eslint/eslint-plugin": "^4.14.1",
"@typescript-eslint/parser": "^4.14.1",
"buffer": "^6.0.3",
"eslint": "^7.18.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-config-standard": "^14.1.1",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.1.0",
"husky": "^4.3.8",
"jest": "^26.6.3",
"lint-staged": "^10.5.3",
"prettier": "^2.2.1",
"stream-browserify": "^3.0.0",
"ts-jest": "^26.4.4",
"ts-loader": "^9.1.2",
"ts-node": "^9.1.1",
"tsconfig-paths-webpack-plugin": "^3.3.0",
"typedoc": "^0.20.19",
"typescript": "^4.1.3",
"webpack": "^5.37.0",
"webpack-bundle-analyzer": "^4.4.0",
"webpack-cli": "^4.7.0"
}
}