-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
88 lines (88 loc) · 3.16 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": "@har79/config",
"version": "7.1.2",
"description": "Common config boilerplate.",
"license": "Unlicense",
"author": {
"name": "Harry Cameron",
"email": "[email protected]",
"url": "https://har79.com"
},
"repository": {
"type": "git",
"url": "https://github.com/har79/config"
},
"files": [
"*"
],
"bin": "install.sh",
"main": "build/src/index",
"types": "build/src/index.d.ts",
"sideEffects": [
"*.{c,sc,sa}ss"
],
"type": "module",
"scripts": {
"clean": "rm -r build coverage dist lib oss-attribution *.tsbuildinfo ||:",
"fix:depcheck": "depcheck",
"fix:lint": "eslint --fix .",
"fix:format": "prettier --write .",
"fix": "npm run fix:depcheck && npm run fix:lint && npm run fix:format",
"license:check": "license-checker --production --onlyAllow 'Unlicense'",
"license:attribution": "generate-attribution",
"license": "npm run license:check && npm run license:attribution",
"preversion": "npm run license:check && npm run fix && npm run type:once && npm run test:once && [ -z \"$(git status --porcelain)\" ]",
"postversion": "git push && git push --tags",
"prepare": "npm run clean && npm run license:check && npm run build",
"build:types": "tsc -p tsconfig.build.json --emitDeclarationOnly",
"build:js": "rollup --config",
"build:webpack": "webpack --config webpack.prod.babel.js",
"build": "npm run build:webpack",
"type:once": "tsc",
"type:watch": "npm run type:once -- --watch",
"type": "npm run type:watch",
"test:once": "jest --coverage",
"test:watch": "jest --coverage --watchAll",
"test": "npm run test:watch",
"start": "webpack-dev-server --config webpack.dev.babel.js"
},
"devDependencies": {
"@babel/plugin-transform-runtime": "^7.25.9",
"@babel/preset-env": "^7.26.0",
"@babel/preset-typescript": "^7.26.0",
"@babel/register": "^7.25.9",
"@eslint/js": "^9.18.0",
"@ianvs/prettier-plugin-sort-imports": "^4.4.1",
"@rollup/plugin-babel": "^6.0.4",
"@rollup/plugin-commonjs": "^28.0.2",
"@rollup/plugin-node-resolve": "^16.0.0",
"@types/jest": "^29.5.14",
"babel-loader": "^9.2.1",
"babel-plugin-module-resolver": "^5.0.2",
"css-loader": "^7.1.2",
"css-minimizer-webpack-plugin": "^7.0.0",
"depcheck": "^1.4.7",
"eslint": "^9.18.0",
"eslint-config-google": "^0.14.0",
"eslint-config-prettier": "^10.0.1",
"eslint-plugin-unused-imports": "^4.1.4",
"globals": "^15.14.0",
"html-webpack-plugin": "^5.6.3",
"jest": "^29.7.0",
"license-checker": "^25.0.1",
"mini-css-extract-plugin": "^2.9.2",
"oss-attribution-generator": "^1.7.1",
"prettier": "^3.4.2",
"prettier-plugin-jsdoc": "^1.3.2",
"prettier-plugin-sh": "^0.14.0",
"rollup": "^4.30.1",
"sass-loader": "^16.0.4",
"terser-webpack-plugin": "^5.3.11",
"typescript": "^5.7.3",
"typescript-eslint": "^8.20.0",
"webpack": "^5.97.1",
"webpack-dev-server": "^5.2.0",
"webpack-merge": "^6.0.1"
},
"packageManager": "[email protected]+sha512.76e2379760a4328ec4415815bcd6628dee727af3779aaa4c914e3944156c4299921a89f976381ee107d41f12cfa4b66681ca9c718f0668fa0831ed4c6d8ba56c"
}