-
Notifications
You must be signed in to change notification settings - Fork 13
/
package.json
63 lines (63 loc) · 2.12 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
{
"name": "@moneytree/mt-link-javascript-sdk",
"version": "4.1.0",
"description": "Moneytree Link JavaScript SDK",
"main": "dist/index.js",
"files": [
"dist/"
],
"repository": "https://github.com/moneytree/mt-link-javascript-sdk",
"author": "Moneytree",
"license": "MIT",
"scripts": {
"build": "rm -rf dist && NODE_OPTIONS=--openssl-legacy-provider webpack",
"build:docs": "rm -rf docs/types && typedoc --out docs/types src",
"prepareRelease": "npm run build && git add dist && npm run build:docs && git add docs",
"createChangelog": "conventional-changelog -i CHANGELOG.md -s && git add CHANGELOG.md",
"version": "npm run prepareRelease && npm run createChangelog",
"test": "jest --no-cache",
"lint:js": "eslint '**/*.js'",
"lint:ts": "eslint -c './.eslintrc-ts.js' '**/*.ts'",
"lint": "yarn lint:js; yarn lint:ts",
"format": "prettier scripts src sample/src --write",
"spellcheck": "cspell src script sample/src",
"lint:fix": "yarn lint:js --fix; yarn lint:ts --fix",
"start:docs": "docsify serve docs",
"prepare": "husky install"
},
"dependencies": {
"crypto-browserify": "^3.12.0",
"cspell": "^7.3.7",
"node-fetch": "^2.6.1",
"qs": "^6.10.1",
"snake-case": "^3.0.4",
"typedoc": "^0.25.1",
"url-safe-base64": "^1.1.1"
},
"devDependencies": {
"@commitlint/cli": "^12.1.4",
"@commitlint/config-conventional": "^12.1.4",
"@testing-library/jest-dom": "^5.12.0",
"@types/jest": "^26.0.23",
"@types/node-fetch": "^2.5.10",
"@types/qs": "^6.9.6",
"@types/url-safe-base64": "^1.1.0",
"@types/uuid": "^8.3.0",
"@typescript-eslint/eslint-plugin": "^4.23.0",
"@typescript-eslint/parser": "^4.23.0",
"conventional-changelog-cli": "^2.1.1",
"docsify-cli": "^4.4.3",
"eslint": "^7.26.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^3.4.0",
"husky": "^6.0.0",
"jest": "^26.6.3",
"jest-fetch-mock": "^3.0.3",
"prettier": "^2.3.0",
"ts-jest": "^26.5.6",
"ts-loader": "^8.0.6",
"typescript": "^4.2.4",
"webpack": "^4.44.2",
"webpack-cli": "^4.7.0"
}
}