-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
55 lines (55 loc) · 1.49 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
{
"name": "groovy-beautify",
"version": "0.0.17",
"description": "A simple beautifier which allows formatting and indenting Groovy scripts",
"main": "./dist/cjs/index.js",
"module": "./dist/es/index.js",
"types": "./dist/index.d.ts",
"exports": {
"types": "./dist/index.d.ts",
"require": "./dist/cjs/index.js",
"import": "./dist/es/index.js",
"default": "./dist/es/index.js"
},
"files": [
"dist/**/*.json",
"dist/**/*.js",
"dist/**/*.ts"
],
"scripts": {
"dev": "vite",
"build": "tsc --noEmit && vite build && tsc --emitDeclarationOnly && prettier --write ./dist",
"lint": "eslint . --ext .ts",
"preview": "vite preview",
"test": "jest",
"test:update": "jest --updateSnapshot"
},
"repository": {
"type": "git",
"url": "git+https://github.com/joycollector/groovy-beautify.git"
},
"keywords": [
"groovy",
"beautify",
"beautifier"
],
"author": "Sergei Kasoverskij",
"license": "MIT",
"bugs": {
"url": "https://github.com/joycollector/groovy-beautify/issues"
},
"homepage": "https://github.com/joycollector/groovy-beautify#readme",
"devDependencies": {
"@types/jest": "^28.1.3",
"@typescript-eslint/eslint-plugin": "^5.29.0",
"@typescript-eslint/parser": "^5.29.0",
"eslint": "^8.18.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.0.0",
"jest": "^28.1.1",
"prettier": "^2.7.1",
"ts-jest": "^28.0.5",
"typescript": "^4.5.4",
"vite": "^2.9.9"
}
}