-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
104 lines (104 loc) · 2.79 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
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
{
"name": "@dankreiger/groop",
"version": "0.1.32",
"description": "Normalize an array of objects by a property.",
"homepage": "https://github.com/dankreiger/groop#readme",
"bugs": {
"url": "https://github.com/dankreiger/groop/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/dankreiger/groop.git"
},
"license": "MIT",
"author": "Dan Kreiger",
"sideEffects": false,
"main": "./dist/cjs/index.js",
"module": "./dist/es/index.js",
"types": "./dist/types/index.d.ts",
"directories": {
"test": "test"
},
"files": [
"dist",
"src"
],
"scripts": {
"build": "npm run clean && npx tsc && npx rollup -c",
"clean": "scripty",
"commit": "scripty",
"commit:protect": "scripty",
"format": "scripty",
"lint": "scripty",
"release": "scripty",
"size": "scripty",
"size:analyze": "scripty",
"test": "scripty",
"test:ci": "scripty",
"test:watch": "scripty"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"devDependencies": {
"@babel/core": "7.26.0",
"@babel/plugin-transform-runtime": "7.25.9",
"@babel/preset-env": "7.26.0",
"@babel/preset-typescript": "7.26.0",
"@babel/runtime": "7.26.0",
"@commitlint/cli": "17.8.1",
"@commitlint/config-conventional": "17.8.1",
"@commitlint/prompt-cli": "17.8.1",
"@rollup/plugin-babel": "5.3.1",
"@rollup/plugin-commonjs": "22.0.2",
"@rollup/plugin-node-resolve": "13.3.0",
"@semantic-release/changelog": "6.0.3",
"@semantic-release/git": "10.0.1",
"@semantic-release/github": "8.1.0",
"@semantic-release/npm": "9.0.2",
"@size-limit/preset-small-lib": "8.2.6",
"@size-limit/webpack": "8.1.0",
"@size-limit/webpack-why": "8.1.0",
"@types/jest": "29.5.14",
"@types/node": "18.19.68",
"@typescript-eslint/eslint-plugin": "5.62.0",
"@typescript-eslint/parser": "5.62.0",
"commitizen": "4.3.1",
"cz-conventional-changelog": "3.3.0",
"eslint": "8.57.1",
"eslint-config-prettier": "8.10.0",
"eslint-plugin-jest": "26.9.0",
"eslint-plugin-prettier": "4.2.1",
"jest": "29.7.0",
"lefthook": "1.9.2",
"prettier": "2.8.8",
"rimraf": "3.0.2",
"rollup": "2.79.2",
"rollup-plugin-terser": "7.0.2",
"rollup-plugin-typescript2": "0.36.0",
"scripty": "2.1.1",
"semantic-release": "19.0.5",
"size-limit": "8.1.0",
"sort-package-json": "1.57.0",
"ts-jest": "29.2.5",
"ts-node": "10.9.2",
"tslib": "2.8.1",
"typescript": "4.9.5"
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org"
},
"size-limit": [
{
"path": "dist/es/index.js",
"limit": "1 KB"
},
{
"path": "dist/cjs/index.js",
"limit": "1 KB"
}
]
}