-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
86 lines (86 loc) · 2.24 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
{
"name": "@totvs/prettier-plugin-4gl",
"displayName": "Prettier Plugin 4GL Formatter",
"description": "Extensão Prettier para formatação de código 4GL.",
"version": "0.1.3",
"publisher": "TOTVS",
"author": {
"name": "TOTVS",
"email": "[email protected]"
},
"license": "Apache-2.0",
"keywords": [
"4gl",
"tds",
"totvs",
"prettier",
"formatter"
],
"repository": {
"type": "git",
"url": "https://github.com/totvs/prettier-plugin-4gl.git"
},
"bugs": {
"url": "https://github.com/totvs/prettier-plugin-4gl/issues"
},
"engines": {
"node": ">= 8.0.0"
},
"main": "lib/index.js",
"types": "typings/index.d.ts",
"files": [
"lib/",
"typings/",
"README.md",
"LICENSE",
".prettierrc"
],
"scripts": {
"clean": "rimraf ./lib && rimraf ./typings",
"build": "tsc -p ./src",
"watch": "tsc -p ./src --watch",
"prebuild": "npm run clean",
"---TEST---": "",
"test": "jest",
"test:snapshot": "npm run test -- --updateSnapshot",
"test:singlefile": "npm run test -- --testNamePattern break_lines.4gl",
"test:folder": "--testPathPattern",
"test:coverage": "npm run test -- --coverage",
"test:onlyFailures": "npm run test --onlyFailures ",
"pretest": "npm run build",
"---RELEASE---": "",
"release": "standard-version",
"to_publish": "git push --follow-tags origin develop && npm publish --access public",
"prepack": "npm run build",
"---MISC---": "",
"contributors:check": "all-contributors check",
"contributors:generate": "all-contributors generate",
"---LINKS---": "",
"link:tds-parsers": "npm link ../tds-parsers --force"
},
"dependencies": {
"prettier": "^2.2.1",
"@totvs/tds-parsers": "^0.1.2",
"typescript": "^4.1.5"
},
"devDependencies": {
"@commitlint/cli": "^12.0.0",
"@commitlint/config-conventional": "^12.0.0",
"@types/fs-extra": "^9.0.7",
"@types/glob": "^7.1.3",
"husky": "^5.0.9",
"jest": "^26.6.3",
"jest-watch-typeahead": "^0.6.1",
"standard-version": "^9.1.1"
},
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
}
}