-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
66 lines (66 loc) · 1.86 KB
/
package.json
File metadata and controls
66 lines (66 loc) · 1.86 KB
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
{
"name": "@7urtle/lambda",
"version": "1.4.3",
"description": "Functional programming library in JavaScript.",
"type": "module",
"module": "./src/index.js",
"sideEffects": false,
"exports": {
"module": "./src/index.js",
"import": "./src/index.js",
"require": "./dist/lambda.min.cjs",
"browser": "./dist/lambda.min.js"
},
"unpkg": "./dist/lambda.min.js",
"jsdelivr": "./dist/lambda.min.js",
"files": [
"dist/*",
"src/*",
"LICENSE",
"README.md"
],
"engines": {
"node": ">=12.16"
},
"scripts": {
"build": "webpack --progress --mode production && node ./create-browser-build.js",
"test": "node --experimental-vm-modules node_modules/jest/bin/jest.js --silent",
"maintain": "npx npm-check-updates -u & npm update && npm audit fix --force && npm test && npm run build",
"analyze": "source-map-explorer 'dist/*.cjs'"
},
"repository": {
"type": "git",
"url": "git+https://github.com/MeetMartin/lambda.git"
},
"keywords": [
"JavaScript",
"functional",
"lambda",
"functor",
"monad"
],
"author": "Martin Novak <ragnarecek@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/MeetMartin/lambda/issues"
},
"homepage": "https://www.7urtle.com/",
"devDependencies": {
"@babel/core": "^7.24.5",
"@babel/plugin-proposal-throw-expressions": "^7.24.1",
"@babel/plugin-syntax-dynamic-import": "^7.8.3",
"@babel/plugin-transform-runtime": "^7.24.3",
"@babel/preset-env": "^7.24.5",
"@babel/runtime": "^7.24.5",
"babel-jest": "^29.7.0",
"babel-loader": "^9.1.3",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"jest-environment-node": "^29.7.0",
"npm-check-updates": "^16.14.20",
"source-map-explorer": "^2.5.3",
"webpack": "^5.91.0",
"webpack-cli": "^5.1.4",
"webpack-dev-server": "^5.0.4"
}
}