-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.15 KB
/
package.json
File metadata and controls
45 lines (45 loc) · 1.15 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
{
"name": "@stackbox-dev/stdlib",
"version": "3.23.0",
"description": "Node.js Standary Utility Functions",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"repository": {
"type": "git",
"url": "git@github.com:stackbox-dev/nodejs-stdlib.git"
},
"scripts": {
"prepare": "husky",
"pretty": "prettier --write \"./src/**/*.{js,ts,json,md}\"",
"clean": "rimraf dist",
"test": "jest",
"test:coverage": "jest --coverage",
"transpile": "tsc -p tsconfig.build.json",
"build": "run-s clean transpile",
"prepublishOnly": "npm run build"
},
"author": "Stackbox <dev@stackbox.xyz>",
"license": "MIT",
"devDependencies": {
"@trivago/prettier-plugin-sort-imports": "^5.2.2",
"@types/jest": "^30.0.0",
"@types/node": "^24.0.13",
"husky": "^9.1.7",
"jest": "^30.0.4",
"lint-staged": "^16.1.2",
"mnemonist": "^0.40.3",
"npm-run-all": "^4.1.5",
"prettier": "^3.6.2",
"rimraf": "^6.0.1",
"ts-jest": "^29.4.0",
"ts-node": "^10.9.2",
"typescript": "^5.8.3"
},
"lint-staged": {
"*.{js,ts,json,md}": "prettier --write"
},
"files": [
"dist",
"LICENSE"
]
}