-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
83 lines (83 loc) · 2.22 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
{
"name": "@stedi/prettier-plugin-jsonata",
"version": "1.0.0",
"description": "Prettier plugin for JSONata language",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist/**/*"
],
"bundledDependencies": [
"prettier"
],
"scripts": {
"test": "SKIP_EXPOSE=true NODE_OPTIONS=--experimental-vm-modules jest --config ./test/jest.unit.ts",
"types": "tsc -p tsconfig.build.json --noEmit",
"lint": "eslint . --ext .ts",
"style": "prettier -c .",
"build": "npm run clean && npm run build:package",
"build:package": "tsc -p tsconfig.build.json",
"clean": "rm -rf ./dist",
"release": "semantic-release",
"prepare": "npm run build && patch-package",
"check": "concurrently npm:test npm:types npm:lint npm:style"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Stedi/prettier-plugin-jsonata.git"
},
"keywords": [
"jsonata",
"prettier",
"plugin"
],
"author": "Stedi Engineering <engineering@stedi.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/Stedi/prettier-plugin-jsonata/issues"
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"homepage": "https://github.com/Stedi/prettier-plugin-jsonata#README.md",
"devDependencies": {
"@commitlint/cli": "18.6.1",
"@commitlint/config-conventional": "18.6.3",
"@semantic-release/exec": "6.0.3",
"@swc/core": "1.7.42",
"@swc/jest": "0.2.37",
"@types/jest": "29.5.14",
"@typescript-eslint/eslint-plugin": "6.21.0",
"@typescript-eslint/parser": "6.21.0",
"concurrently": "8.2.2",
"esbuild": "0.24.0",
"eslint": "8.57.1",
"husky": "8.0.3",
"jest": "29.7.0",
"jest-extended": "4.0.2",
"jest-matcher-specific-error": "1.0.0",
"jsonata": "2.0.5",
"patch-package": "8.0.0",
"semantic-release": "21.1.2",
"ts-jest": "29.2.5",
"ts-node": "10.9.2",
"typescript": "5.6.3"
},
"peerDependencies": {
"jsonata": "^1.7.0 || ^2.0.0"
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org"
},
"volta": {
"node": "18.16.0",
"npm": "9.6.7"
},
"sideEffects": false,
"dependencies": {
"prettier": "3.0.1"
}
}