-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.67 KB
/
package.json
File metadata and controls
60 lines (60 loc) · 1.67 KB
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.state-machine",
"version": "0.0.0",
"unity": "2018.1",
"displayName": "Fluid State Machine",
"description": "A finite state machine micro-framework for Unity3D focused on a pure code implementation.",
"main": "create-dist.js",
"scripts": {
"build": "node build.js",
"commit": "git-cz",
"semantic-release": "semantic-release"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ashblue/fluid-state-machine.git"
},
"keywords": [
"unity3d",
"fsm",
"finite-state-machine",
"unity3d-plugin"
],
"author": {
"name": "Ash Blue",
"email": "ash@blueashes.com",
"url": "https://twitter.com/ashbluewd"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/ashblue/fluid-state-machine/issues"
},
"homepage": "https://github.com/ashblue/fluid-state-machine#readme",
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"devDependencies": {
"@commitlint/cli": "^8.0.0",
"@commitlint/config-conventional": "^8.0.0",
"@commitlint/travis-cli": "^8.0.0",
"@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.12",
"upm-package-populator": "^1.0.2"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}