-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
85 lines (85 loc) · 2.5 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
{
"name": "@naturalcycles/dev-lib",
"version": "12.11.3",
"scripts": {
"prepare": "husky",
"tsn-debug": "tsn testScript.ts",
"dev-lib": "tsn ./src/bin/dev-lib.ts",
"bt": "tsn ./src/bin/dev-lib.ts bt && tsn eslintPrintConfig",
"lbt": "tsn ./src/bin/dev-lib.ts lbt && tsn eslintPrintConfig",
"build": "tsn ./src/bin/dev-lib.ts build",
"build-prod-esm-cjs": "tsn ./src/bin/dev-lib.ts build-esm-cjs",
"test": "tsn ./src/bin/dev-lib.ts test",
"test-leaks": "tsn ./src/bin/dev-lib.ts test-leaks",
"test-integration": "tsn ./src/bin/dev-lib.ts test-integration",
"lint": "tsn ./src/bin/dev-lib.ts lint",
"up": "tsn ./src/bin/up.ts",
"upnc": "tsn ./src/bin/upnc.ts"
},
"dependencies": {
"@biomejs/biome": "^1.8.3",
"@commitlint/cli": "^19.0.0",
"@commitlint/config-conventional": "^19.0.0",
"@eslint/js": "^9.7.0",
"@inquirer/prompts": "^7.0.0",
"@naturalcycles/cli": "^1.0.0",
"@naturalcycles/js-lib": "^14.0.0",
"@naturalcycles/nodejs-lib": "^13.0.1",
"@stylistic/eslint-plugin": "^2.9.0",
"@types/jest": "^29.0.0",
"@types/node": "^22.0.0",
"@types/yargs": "^16.0.0",
"eslint": "9.14.0",
"eslint-plugin-import-x": "^4.0.0",
"eslint-plugin-jest": "^28.0.0",
"eslint-plugin-jsdoc": "^50.0.0",
"eslint-plugin-simple-import-sort": "^12.1.1",
"eslint-plugin-unicorn": "^56.0.0",
"eslint-plugin-vue": "^9.0.0",
"expect-type": "^1.0.0",
"globals": "^15.8.0",
"husky": "^9.0.2",
"jest-junit": "^16.0.0",
"lint-staged": "^15.0.1",
"micromatch": "^4.0.5",
"mitm": "^1.7.0",
"prettier": "^3.0.0",
"timekeeper": "^2.2.0",
"ts-jest": "^29.0.0",
"typescript": "^5.0.2",
"typescript-eslint": "^8.0.0",
"yargs": "^17.0.0"
},
"devDependencies": {
"jest": "^29.0.0",
"stylelint": "^16.0.2",
"stylelint-config-standard-scss": "^13.0.0"
},
"files": [
"dist",
"scripts/tsconfig.json",
"cfg/overwrite/.gitignore",
"cfg"
],
"main": "dist/index.js",
"types": "dist/index.d.ts",
"bin": {
"dev-lib": "dist/bin/dev-lib.js",
"up": "dist/bin/up.js",
"upnc": "dist/bin/upnc.js"
},
"engines": {
"node": ">=22.10.0"
},
"publishConfig": {
"provenance": true,
"access": "public"
},
"repository": {
"type": "git",
"url": "https://github.com/NaturalCycles/dev-lib"
},
"description": "Set of opinionated configuration files and tools for common project needs",
"author": "Natural Cycles Team",
"license": "MIT"
}