-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
82 lines (82 loc) · 2.32 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
{
"name": "mxs",
"version": "0.10.1",
"description": "⚔️ Lightweight functional JavaScript utilities",
"main": "dist/mxs.js",
"module": "dist/mxs.js",
"types": "dist/index.d.ts",
"scripts": {
"lint": "eslint src --max-warnings=0",
"lint:fix": "npm run lint --fix",
"format": "prettier --write 'src/**/*.{js,md,json}'",
"build": "tsc && webpack --config config/webpack.prod.js",
"build:dev": "tsc && webpack --watch --progress --config config/webpack.dev.js",
"test": "jest",
"test:watch": "npm test --watch --maxWorkers=50%",
"test:ci": "npm test --coverage",
"postpublish": "npm run build",
"docs:serve": "docsify serve ./docs -P 3000",
"generate-fn-md": "jsdoc2md",
"validate": "npm run lint && npm test"
},
"lint-staged": {
"src/**/*.{js,json,md}": [
"prettier --write ."
],
"src/**/*": [
"npm lint --fix",
"npm test --findRelatedTests --bail"
]
},
"repository": "[email protected]:helderburato/maximus.git",
"author": "Helder Burato Berto <[email protected]> (https://helderburato.com)",
"keywords": [
"maximus",
"mx",
"functional",
"utils",
"utilities",
"lightweight",
"fp"
],
"files": [
"dist/",
"LICENSE",
"README.md"
],
"devDependencies": {
"@babel/core": "^7.16.12",
"@babel/eslint-parser": "^7.16.5",
"@babel/preset-env": "^7.16.11",
"@commitlint/cli": "^18.4.4",
"@commitlint/config-conventional": "^16.0.0",
"@swc/core": "^1.2.133",
"@types/jest": "^29.5.11",
"@types/node": "^20.11.0",
"babel-jest": "^27.4.6",
"clean-webpack-plugin": "^4.0.0-alpha.0",
"docsify-cli": "^4.4.2",
"eslint": "^8.7.0",
"eslint-config-prettier": "^8.1.0",
"eslint-config-standard": "^16.0.2",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-promise": "^6.0.0",
"eslint-plugin-standard": "^5.0.0",
"faker": "^5.4.0",
"husky": "^7.0.4",
"jest": "^29.7.0",
"jsdoc-to-markdown": "^7.1.0",
"lint-staged": "12.3.2",
"prettier": "^2.5.1",
"swc-loader": "^0.1.15",
"ts-jest": "^29.1.1",
"ts-loader": "^9.5.1",
"typescript": "^5.3.3",
"webpack": "^5.67.0",
"webpack-cli": "^4.9.2",
"webpack-merge": "^5.7.3"
},
"license": "MIT"
}