-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathpackage.json
More file actions
75 lines (75 loc) · 2.18 KB
/
package.json
File metadata and controls
75 lines (75 loc) · 2.18 KB
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
{
"name": "@salesforce/apex-tmlanguage",
"version": "2.0.3",
"description": "Textmate grammar for Apex with outputs for VSCode, Atom and TextMate.",
"displayName": "apex-tmLanguage",
"keywords": [
"salesforce-dx",
"salesforce",
"apex"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/forcedotcom/apex-tmLanguage/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/forcedotcom/apex-tmLanguage.git"
},
"contributors": [
{
"name": "Nathan Totten",
"url": "https://github.com/ntotten"
},
{
"name": "Luis Campos-Guajardo",
"url": "https://github.com/lcampos"
},
{
"name": "Nick Chen",
"url": "https://github.com/vazexqi"
}
],
"scripts": {
"build:grammars": "node scripts/build-grammars.js",
"build:atom": "node scripts/build-atom.js",
"build:soql": "node scripts/build-soql.js",
"build": "npm run build:grammars && npm run build:atom && npm run build:soql",
"compile": "tsc -p .",
"watch": "tsc -w -p .",
"test:soql-tmgrammar": "vscode-tmgrammar-test -g \"./grammars/soql.tmLanguage\" \"./test/soql/*.soql\" ",
"test:soql-tmgrammar-snapshots": "vscode-tmgrammar-snap -s source.soql -g \"./grammars/soql.tmLanguage\" \"./test/soql/snapshots/*.soql\" ",
"test": "npm run compile && mocha out/test/**/*.test.js && npm run test:soql-tmgrammar && npm run test:soql-tmgrammar-snapshots",
"prepare": "npm run build",
"format": "prettier --config .prettierrc.json --write './**/*.{ts,js,json,md}'"
},
"files": [
"grammars/**",
"LICENSE.md",
"README.md"
],
"engines": {
"node": ">=20"
},
"devDependencies": {
"@commitlint/cli": "^20",
"@commitlint/config-conventional": "^20",
"@types/chai": "4.3.4",
"@types/mocha": "^10.0.10",
"chai": "^4.3.7",
"cson-parser": "^4.0.9",
"cz-conventional-changelog": "^3.3.0",
"js-yaml": "^4.1.1",
"mocha": "^11.7.5",
"plist": "^3.1.0",
"prettier": "^3.6.2",
"typescript": "4.9.3",
"vscode-textmate": "^9.2.1",
"vscode-tmgrammar-test": "^0.1.3"
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
}
}