forked from snowcoders/sortier
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
95 lines (95 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
{
"author": "Snowcoders",
"bin": {
"sortier": "./bin/index.js"
},
"dependencies": {
"@types/estree": "~1.0.0",
"@types/postcss-less": "^4.0.0",
"@typescript-eslint/typescript-estree": "^5.8.0",
"angular-html-parser": "^7.0.0",
"cosmiconfig": "^9.0.0",
"find-up": "^7.0.0",
"flow-parser": "~0.255.0",
"globby": "^14.0.0",
"ignore": "^6.0.0",
"postcss-less": "^6.0.0",
"postcss-scss": "^4.0.0",
"typescript": "^5.0.0"
},
"description": "An opinionated code sorter",
"devDependencies": {
"@release-it/keep-a-changelog": "5.0.0",
"@snowcoders/renovate-config": "3.0.0-beta.17",
"@types/node": "22.10.1",
"@typescript-eslint/eslint-plugin": "5.62.0",
"@typescript-eslint/parser": "5.62.0",
"changelog-updater": "2.0.3",
"concurrently": "9.1.0",
"cpy-cli": "5.0.0",
"docsify-cli": "4.4.4",
"eslint": "8.57.1",
"eslint-config-prettier": "9.1.0",
"eslint-plugin-import": "2.31.0",
"eslint-plugin-prettier": "5.2.1",
"husky": "9.1.7",
"jest": "29.7.0",
"lint-staged": "15.2.10",
"prettier": "3.4.2",
"release-it": "17.10.0",
"rimraf": "6.0.1",
"ts-jest": "29.2.5"
},
"engines": {
"node": ">=16.0.0"
},
"exports": {
".": {
"import": "./dist/lib/index.js",
"require": "./dist-cjs/lib/index.js"
},
"./package.json": "./package.json"
},
"homepage": "https://snowcoders.github.io/sortier",
"keywords": [
"order",
"alphabetize",
"sorter",
"sort",
"sorting",
"organize",
"import",
"module"
],
"license": "MIT",
"main": "./dist-cjs/lib/index.js",
"name": "sortier",
"repository": "github:snowcoders/sortier",
"scripts": {
"build": "concurrently \"npm:build:*\"",
"build:cjs": "tsc -p tsconfig.cjs.json && cpy ./src/cjs-package.json.txt ./dist-cjs --flat --rename=package.json",
"build:esm": "tsc -p tsconfig.esm.json",
"clean": "rimraf coverage dist dist-cjs",
"husky:commit-msg": "echo 'No commitlint installed'",
"husky:pre-commit": "npx --no lint-staged",
"husky:pre-push": "npm test",
"lint": "eslint --fix ./src/**/*.{js,jsx,ts,tsx}",
"prepare": "npm run clean && npm run build && npx --no-install husky install",
"start": "npm run start:cli",
"start:cli": "node bin/index.js",
"start:docs": "concurrently \"npm:start:docs-*\"",
"start:docs-playground": "npm run watch -w=src-playground",
"start:docs-static": "docsify serve ./docs",
"test": "node --experimental-vm-modules node_modules/jest/bin/jest.js",
"test-e2e": "docker build -f e2e_tests.dockerfile .",
"version": "changelog-updater && git add ."
},
"sideEffects": false,
"type": "module",
"types": "./dist/lib/index.d.ts",
"version": "2.0.2",
"workspaces": [
".",
"src-playground"
]
}