-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
83 lines (83 loc) · 2.36 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
{
"name": "@mll-lab/js-utils",
"version": "2.37.0",
"main": "dist/index.common.js",
"module": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"description": "Shared JavaScript utilities of MLL",
"scripts": {
"build": "rollup --config && tsc --emitDeclarationOnly",
"test": "jest",
"test:watch": "jest --watch",
"typecheck": "tsc --noEmit",
"lint": "eslint --ignore-path .gitignore --ext .ts .",
"fix": "yarn run lint --fix",
"release": "standard-version"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mll-lab/js-utils.git"
},
"keywords": [
"js",
"utils"
],
"author": {
"name": "Benedikt Franke",
"email": "benedikt@franke.tech"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/mll-lab/js-utils/issues"
},
"homepage": "https://github.com/mll-lab/js-utils",
"peerDependencies": {
"@babel/runtime": ">=7.13.6"
},
"dependencies": {
"date-fns": "3.0.1",
"lodash": "4.17.21"
},
"devDependencies": {
"@babel/core": "^7.13.1",
"@babel/eslint-parser": "^7.13.14",
"@babel/plugin-transform-runtime": "^7.13.6",
"@babel/preset-env": "^7.13.0",
"@babel/runtime": "^7.13.6",
"@mll-lab/eslint-config": "^3.1.0",
"@mll-lab/eslint-plugin": "^1.3.4",
"@mll-lab/prettier-config": "^1.0.0",
"@mll-lab/tsconfig": "^1.1.0",
"@rollup/plugin-babel": "^5.3.0",
"@rollup/plugin-commonjs": "^18.0.0",
"@rollup/plugin-node-resolve": "^11.2.1",
"@rollup/plugin-typescript": "^11.1.6",
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/git": "^10.0.1",
"@types/jest": "^29.5.12",
"@types/lodash": "4.14.136",
"@types/node": "^14.14.31",
"@typescript-eslint/eslint-plugin": "^7.1.0",
"@typescript-eslint/parser": "^7.1.0",
"babel-jest": "^29.7.0",
"babel-loader": "^8.2.2",
"babel-plugin-require-context-hook": "^1.0.0",
"eslint": "^8.57.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-unused-imports": "^3.1.0",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"prettier": "^3.1.0",
"rollup": "^2.45.2",
"rollup-plugin-peer-deps-external": "^2.2.4",
"semantic-release": "^23.0.2",
"ts-jest": "^29.1.2",
"ts-loader": "^8.0.17",
"ts-node": "^9.1.1",
"typescript": "^5.3.3"
},
"packageManager": "yarn@4.4.0"
}