-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
51 lines (51 loc) · 1.25 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
{
"name": "@eramux/rekey",
"version": "0.1.3",
"description": "A simple and performant zero dependency library that allows you to modify your object structure using references.",
"repository": {
"type": "git",
"url": "git+https://github.com/eramux/rekey.git"
},
"main": "dist/index.js",
"types": "dist/index.d.ts",
"license": "MIT",
"author": {
"name": "Daniel Schneider",
"email": "[email protected]"
},
"scripts": {
"build": "rm -rf dist && tsc -p tsconfig.json",
"build:badges": "istanbul-badges-readme",
"test": "jest"
},
"keywords": [
"rename",
"js",
"object",
"key",
"array"
],
"husky": {
"hooks": {
"pre-commit": "npm run test && istanbul-badges-readme && git add 'README.md'"
}
},
"devDependencies": {
"@babel/cli": "7.25.6",
"@babel/node": "7.25.0",
"@babel/preset-env": "7.25.4",
"@commitlint/config-conventional": "19.4.1",
"@types/jest": "29.5.12",
"@types/node": "20.16.2",
"commitlint": "19.4.1",
"esm": "3.2.25",
"husky": "9.1.5",
"jest": "29.7.0",
"nyc": "17.0.0",
"ts-jest": "29.2.5",
"ts-node": "10.9.2",
"ts-node-dev": "2.0.0",
"typescript": "5.5.4",
"istanbul-badges-readme": "1.9.0"
}
}