generated from permafrost-dev/typescript-project-skeleton-esbuild-jest
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
77 lines (77 loc) · 2.64 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
{
"name": "meraki-cli",
"version": "1.3.0",
"author": "Patrick Organ <[email protected]>",
"license": "MIT",
"description": "Meraki script development cli",
"homepage": "https://github.com/merakigenart/meraki-cli",
"keywords": [
"meraki",
"cli"
],
"repository": {
"type": "git",
"url": "https://github.com/merakigenart/meraki-cli.git"
},
"bugs": {
"url": "https://github.com/merakigenart/meraki-cli/issues"
},
"main": "dist/index.js",
"scripts": {
"test": "./node_modules/.bin/jest tests --verbose",
"fmt": "./node_modules/.bin/prettier --config prettier.config.js --write 'src/**/*.{js,ts,json,yml,yaml}' 'tests/**/*.{js,ts,json,yml,yaml}' './*.{js,yml,yaml,json}'",
"lint": "./node_modules/.bin/eslint --ext ts,js src/",
"lint:fix": "./node_modules/.bin/eslint --ext ts,js --fix src/",
"fix": "npm run fmt && npm run lint:fix",
"build:dev": "./node_modules/.bin/esbuild --platform=node --target=node16 --define:__APP_VERSION__=\"'1.0'\" --format=cjs --bundle --outdir=dist src/index.ts",
"build:prod": "node ./scripts/build.js --production",
"dev": "npm run build:dev && node dist/index.js",
"prepare": "husky install",
"preversion": "npm run test",
"postversion": "npm run build:prod"
},
"lint-staged": {
"*.{js,ts}": [
"./node_modules/.bin/prettier --config prettier.config.js --write",
"./node_modules/.bin/eslint --fix"
],
"*.{json,css,scss,gql}": [
"./node_modules/.bin/prettier --config prettier.config.js --write"
],
"*.{yaml,yml}": [
"./node_modules/.bin/prettier --config prettier.config.js --tab-width 2 --write"
]
},
"devDependencies": {
"@types/jest": "^27.4.0",
"@types/node": "^20.2.3",
"@typescript-eslint/eslint-plugin": "^5.11.0",
"@typescript-eslint/parser": "^5.11.0",
"esbuild": "^0.18.1",
"eslint": "^8.8.0",
"husky": "^8.0.1",
"jest": "^27.5.0",
"lint-staged": "^13.0.3",
"prettier": "^2.5.1",
"ts-jest": "^27.1.3",
"typescript": "^4.5"
},
"dependencies": {
"axios": "^1.1.3",
"chalk": "^5.0.0",
"commander": "^8.3.0",
"conf": "^10.1.1",
"js-base64": "^3.7.2",
"js-yaml": "^4.1.0",
"ora": "^6.0.1",
"prompts": "^2.4.2",
"stdout-update": "^3.0.2",
"update-notifier": "^5.1.0"
},
"bin": {
"meraki-cli": "bin/meraki-cli"
},
"engines": {
"node": ">=14.0.0"
}
}