-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
59 lines (59 loc) · 1.6 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
{
"name": "com.fluid.simple-spellcheck",
"version": "0.0.0",
"unity": "",
"displayName": "Unity Simple Spellcheck",
"description": "A simple spell check utility for use in the Unity Editor",
"main": "build.js",
"scripts": {
"build": "node build.js",
"semantic-release": "semantic-release",
"commit": "git-cz"
},
"keywords": [
"spelling",
"spell check",
"unity editor",
"unity textarea"
],
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"repository": {
"type": "git",
"url": "git+https://github.com/ashblue/unity-simple-spellcheck.git"
},
"author": {
"name": "Ash Blue",
"email": "ash@clevercrowgames.com",
"url": "https://twitter.com/ashbluewd"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/ashblue/unity-simple-spellcheck/issues"
},
"homepage": "https://github.com/ashblue/unity-simple-spellcheck#readme",
"devDependencies": {
"@commitlint/cli": "~17.1.2",
"@commitlint/config-conventional": "~17.1.0",
"@semantic-release/changelog": "~6.0.1",
"@semantic-release/commit-analyzer": "~9.0.2",
"@semantic-release/exec": "~6.0.3",
"@semantic-release/git": "~10.0.1",
"@semantic-release/github": "~8.0.6",
"@semantic-release/npm": "~9.0.1",
"@semantic-release/release-notes-generator": "~10.0.3",
"commitizen": "^4.2.5",
"cz-conventional-changelog": "~3.3.0",
"husky": "^8.0.1",
"semantic-release": "~19.0.5",
"upm-package-populator": "^2.0.0"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}