-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
52 lines (52 loc) · 1.2 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
{
"name": "prettier-plugin-kotlin",
"version": "2.1.0",
"description": "prettier plugin for the Kotlin programming language.",
"main": "src/kotlin.js",
"scripts": {
"regen-kotato": "cd kotato && ./gradlew shadowJar && cp -f build/libs/kotato*.jar ../src/kotato",
"test": "jest",
"parse-example": "prettier --plugin . example.kt",
"release": "np"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Angry-Potato/prettier-plugin-kotlin.git"
},
"keywords": [
"kotlin",
"prettier",
"plugin",
"ast",
"parse",
"format"
],
"author": "Liam Humphreys",
"license": "MIT",
"bugs": {
"url": "https://github.com/Angry-Potato/prettier-plugin-kotlin/issues"
},
"homepage": "https://github.com/Angry-Potato/prettier-plugin-kotlin#readme",
"devDependencies": {
"husky": "^2.7.0",
"jest": "^24.8.0",
"np": "*",
"pretty-quick": "^1.11.1"
},
"dependencies": {
"djv": "^2.1.3-alpha.0",
"glob": "^7.1.4",
"prettier": "^1.18.2"
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged"
}
},
"jest": {
"setupFilesAfterEnv": [
"./setupTests.js"
],
"testRegex": ".spec.js$"
}
}