We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f0d78af commit dc509abCopy full SHA for dc509ab
sandbox/template.package.json
@@ -1,5 +1,5 @@
1
{
2
- "licence": "MIT",
+ "license": "MIT",
3
"author": {
4
"name": "Mr. Should be Overridden"
5
}
src/main/kotlin/dsl/PackageJson.kt
@@ -123,9 +123,9 @@ class PackageJson() : JsonObject<Any>() {
123
fun bugs(config: Bugs.() -> Unit = {}) = Bugs(bugs, config).also { bugs = it }
124
125
/**
126
- * [licence](https://docs.npmjs.com/files/package.json#license)
+ * [license](https://docs.npmjs.com/files/package.json#license)
127
*/
128
- var licence: String? by this
+ var license: String? by this
129
130
131
* [author](https://docs.npmjs.com/files/package.json#people-fields-author-contributors)
0 commit comments