-
Notifications
You must be signed in to change notification settings - Fork 15
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 2.03 KB
/
Copy pathpackage.json
File metadata and controls
62 lines (62 loc) · 2.03 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
{
"name": "@moneytree/mt-link-javascript-sdk",
"version": "5.1.0",
"description": "Moneytree Link JavaScript SDK",
"main": "dist/index.js",
"files": [
"dist/"
],
"repository": {
"type": "git",
"url": "git+https://github.com/moneytree/mt-link-javascript-sdk.git"
},
"author": "Moneytree",
"license": "MIT",
"scripts": {
"build": "rm -rf dist && 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",
"test:dev": "jest --watch",
"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"
},
"devDependencies": {
"@commitlint/cli": "^12.1.4",
"@commitlint/config-conventional": "^12.1.4",
"@testing-library/jest-dom": "^5.12.0",
"@types/jest": "30.0.0",
"@types/node": "^26.1.2",
"@typescript-eslint/eslint-plugin": "^4.23.0",
"@typescript-eslint/parser": "^4.23.0",
"buffer": "^6.0.3",
"conventional-changelog-cli": "^2.1.1",
"cspell": "^7.3.7",
"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": "30.4.2",
"jest-environment-jsdom": "^30.4.1",
"jest-fetch-mock": "^3.0.3",
"prettier": "^2.3.0",
"process": "^0.11.10",
"stream-browserify": "^3.0.0",
"ts-jest": "29.4.12",
"ts-loader": "^9",
"typedoc": "^0.28.20",
"typescript": "6.0.3",
"webpack": "^5",
"webpack-cli": "^5"
},
"packageManager": "yarn@4.14.1"
}