-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
58 lines (58 loc) · 1.54 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
{
"name": "com.fluid.unique-id",
"version": "0.0.0",
"unity": "",
"displayName": "Fluid Unique ID",
"description": "A micro-framework for managing unique IDs across scenes",
"main": "build.js",
"scripts": {
"build": "node build.js",
"semantic-release": "semantic-release",
"commit": "git-cz"
},
"keywords": [
"unique id",
"unity",
"guid"
],
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"repository": {
"type": "git",
"url": "git+https://github.com/ashblue/fluid-unique-id.git"
},
"author": {
"name": "Ash Blue",
"email": "[email protected]",
"url": "https://twitter.com/ashbluewd"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/ashblue/fluid-unique-id/issues"
},
"homepage": "https://github.com/ashblue/fluid-unique-id#readme",
"devDependencies": {
"@commitlint/cli": "~12.0.1",
"@commitlint/config-conventional": "~12.0.1",
"@semantic-release/changelog": "~5.0.1",
"@semantic-release/commit-analyzer": "~8.0.1",
"@semantic-release/exec": "~5.0.0",
"@semantic-release/git": "~9.0.0",
"@semantic-release/github": "~7.2.0",
"@semantic-release/npm": "~7.0.10",
"@semantic-release/release-notes-generator": "~9.0.2",
"commitizen": "~4.2.3",
"cz-conventional-changelog": "~3.3.0",
"husky": "~5.1.3",
"semantic-release": "~17.4.2",
"upm-package-populator": "^2.0.0"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}