forked from Unity-Technologies/Graphics
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 902 Bytes
/
Copy pathpackage.json
File metadata and controls
32 lines (32 loc) · 902 Bytes
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
{
"name": "graphics-tools",
"version": "0.0.0",
"description": "NPM tools to support CI and testing - This is not a Unity package!",
"repository": {
"type": "git",
"url": "git+https://github.com/Unity-Technologies/Graphics.git"
},
"author": "",
"license": "SEE LICENSE IN LICENSE.md",
"homepage": "https://github.com/Unity-Technologies/Graphics#readme",
"devDependencies": {
"husky": "^4.2.5",
"lint-staged": "^10.2.11"
},
"scripts": {
"preinstall": "python ./git-hook/preinstall.py",
"postinstall": "python ./git-hook/postinstall.py"
},
"husky": {
"hooks": {
"pre-commit": "npx lint-staged",
"pre-push": "python -m git-hook.prepush.check_branch_name"
}
},
"lint-staged": {
"../**/*": [
"python -m git-hook.precommit.file_extension_to_lowercase",
"python -m git-hook.precommit.check_shader_includes"
]
}
}