-
Notifications
You must be signed in to change notification settings - Fork 13
/
package.json
60 lines (60 loc) · 1.68 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
60
{
"name": "com.fluid.unity-animator-helpers",
"version": "0.0.0-development",
"unity": "2019.1",
"displayName": "Unity Animator Helpers",
"description": "A set of Animator helper scripts to better streamline and handle animation playback",
"main": "build.js",
"scripts": {
"build": "node build.js",
"semantic-release": "semantic-release",
"commit": "git-cz"
},
"keywords": [
"Unity",
"ScriptableObject",
"Animator",
"animation"
],
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"repository": {
"type": "git",
"url": "https://github.com/ashblue/unity-animator-helpers.git"
},
"author": {
"name": "Ash Blue",
"email": "ash@blueashes.com",
"url": "https://twitter.com/ashbluewd"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/ashblue/unity-animator-helpers/issues"
},
"homepage": "https://github.com/ashblue/unity-animator-helpers#readme",
"devDependencies": {
"@commitlint/cli": "^7.6.1",
"@commitlint/config-conventional": "^7.6.0",
"@commitlint/travis-cli": "^7.6.1",
"@semantic-release/changelog": "^3.0.2",
"@semantic-release/commit-analyzer": "^6.1.0",
"@semantic-release/exec": "^3.3.2",
"@semantic-release/git": "^7.0.8",
"@semantic-release/github": "^5.2.10",
"@semantic-release/npm": "^5.1.7",
"@semantic-release/release-notes-generator": "^7.1.4",
"commitizen": "^3.1.1",
"cz-conventional-changelog": "^2.1.0",
"husky": "^2.3.0",
"semantic-release": "^15.13.30",
"upm-package-populator": "^1.0.0"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}