-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
88 lines (88 loc) · 2.38 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
85
86
87
88
{
"name": "@esmj/size",
"version": "0.5.0",
"description": "JavaScript Package Size Cost like bundlephobia or import-cost",
"keywords": [
"bundlephobia",
"import cost",
"analysis",
"javascript cost",
"webpack"
],
"bin": {
"esmj-size": "./bin/size.mjs"
},
"main": "/src/index.mjs",
"scripts": {
"preversion": "npm test && npm run lint",
"version": "npm run changelog && git add CHANGELOG.md",
"postversion": "git push && git push --tags",
"test": "NODE_OPTIONS=--experimental-vm-modules ./node_modules/.bin/jest --no-watchman -c ./jest.config.js",
"lint:cmd": "eslint -c ./.eslintrc.js --ignore-path ./.prettierignore --no-eslintrc",
"lint": "npm run lint:cmd -- './src/**/*.{mjs,cjs,js,jsx}'",
"lint:fix": "npm run lint -- --fix",
"changelog": "conventional-changelog -p angular -i CHANGELOG.md -s -r 1",
"commit": "git-cz",
"prepare": "husky install"
},
"author": "Miroslav Jancarik",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/mjancarik/esmj-size.git"
},
"bugs": {
"url": "https://github.com/mjancarik/esmj-size/issues"
},
"publishConfig": {
"registry": "https://registry.npmjs.org/",
"access": "public"
},
"devDependencies": {
"@commitlint/cli": "^17.7.1",
"@commitlint/config-conventional": "^17.7.0",
"commitizen": "^4.3.0",
"conventional-changelog-cli": "^3.0.0",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^8.47.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-jasmine": "^4.1.3",
"eslint-plugin-jest": "^27.2.3",
"eslint-plugin-prettier": "^5.0.0",
"git-cz": "^4.9.0",
"husky": "^8.0.3",
"jest": "^29.6.4",
"lint-staged": "^14.0.1",
"prettier": "^3.0.2"
},
"dependencies": {
"cli-table3": "^0.6.3",
"commander": "^11.0.0",
"css-loader": "^6.8.1",
"easy-uid": "^2.0.2",
"execa": "^8.0.1",
"fs-extra": "^11.1.1",
"mini-css-extract-plugin": "^2.7.6",
"ora": "^7.0.1",
"postcss-loader": "^7.3.3",
"postcss-preset-env": "^9.1.1",
"terser-webpack-plugin": "^5.3.9",
"webpack": "^5.88.2"
},
"lint-staged": {
"**/*.{js,mjs}": "npm run lint:cmd"
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"config": {
"commitizen": {
"path": "git-cz"
}
},
"engines": {
"node": "18.x"
}
}