-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
57 lines (57 loc) · 1.46 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
{
"name": "mygekko-client-library",
"version": "0.1.2",
"description": "MyGekko javascript client library",
"keywords": [
"mygekko",
"javascript",
"Slide",
"API",
"Nova"
],
"author": "pinpong",
"license": "Apache-2.0",
"type": "commonjs",
"source": "src/index.ts",
"main": "dist/index.js",
"scripts": {
"postinstall": "husky install && husky set .husky/pre-commit \"yarn test\" && husky add .husky/pre-commit \"yarn lint-staged\"",
"prepack": "pinst --disable",
"postpack": "pinst --enable",
"build": "rm -rf ./dist && tsc",
"docs": "typedoc",
"test": "jest",
"format": "yarn prettier . --write",
"lint": "eslint . --fix"
},
"devDependencies": {
"@jest/globals": "29.7.0",
"@trivago/prettier-plugin-sort-imports": "4.2.0",
"@types/jest": "29.5.5",
"@typescript-eslint/eslint-plugin": "6.7.3",
"@typescript-eslint/parser": "6.7.3",
"eslint": "8.50.0",
"eslint-config-prettier": "9.0.0",
"eslint-plugin-import": "2.28.1",
"eslint-plugin-jsdoc": "46.8.2",
"eslint-plugin-tsdoc": "0.2.17",
"husky": "8.0.3",
"jest": "29.7.0",
"lint-staged": "14.0.1",
"pinst": "3.0.0",
"prettier": "3.0.3",
"ts-jest": "29.1.1",
"typedoc": "0.25.1",
"typescript": "5.2.2"
},
"dependencies": {
"axios": "1.5.1"
},
"repository": {
"type": "git",
"url": "https://github.com/pinpong/mygekko-client-library.git"
},
"engines": {
"node": ">=18"
}
}