forked from nishtahir/language-kotlin
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
38 lines (38 loc) · 1.37 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
{
"name": "language-kotlin",
"version": "1.0.0",
"description": "Textmate grammar for the Kotlin programming language",
"author": "Nish Tahir",
"license": "Apache-2.0",
"homepage": "https://github.com/nishtahir/language-kotlin#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/nishtahir/language-kotlin.git"
},
"bugs": {
"url": "https://github.com/nishtahir/language-kotlin/issues"
},
"scripts": {
"build:snapshot": "npx vscode-tmgrammar-snap -u -g dist/Kotlin.tmLanguage -s source.kotlin \"snapshots/**/*.kt\"",
"build:grammar": "node scripts/build.js",
"build": "npm run build:grammar && npm run build:snapshot",
"format": "node scripts/format.js",
"coverage": "node scripts/coverage.js && npx codecov",
"prettier": "prettier --write .",
"test:snapshot": "npx vscode-tmgrammar-snap -g dist/Kotlin.tmLanguage -s source.kotlin \"snapshots/**/*.kt\"",
"test:grammar": "npx vscode-tmgrammar-test -g dist/Kotlin.tmLanguage \"test/**/*.test.kt\"",
"test": "npm run test:grammar && npm run test:snapshot"
},
"devDependencies": {
"codecov": "^3.8.3",
"deepmerge": "^4.2.2",
"format-json": "^1.0.3",
"lcov-write": "^1.0.0",
"plist": "^3.0.6",
"prettier": "^3.0.3",
"vscode-tmgrammar-test": "^0.1.1",
"yaml": "^1.10.0",
"yaml-source-map": "^2.1.1",
"yamljs": "^0.3.0"
}
}