-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
66 lines (65 loc) · 2.72 KB
/
package.json
File metadata and controls
66 lines (65 loc) · 2.72 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
61
62
63
64
65
66
{
"name": "@tinywalnutgames/storytest",
"version": "1.3.0",
"description": "Story Test Framework - Code quality validation via IL bytecode analysis for Unity and .NET projects",
"main": "scripts/story_test.py",
"scripts": {
"test": "python -m pytest tests/ -v",
"lint": "python -m pylint scripts/story_test.py",
"validate": "python scripts/story_test.py . --verbose",
"validate:report": "python scripts/story_test.py . --verbose --output .debug/story-test-report.json",
"validate:ci": "python scripts/story_test.py . --fail-on-violations --output story-test-report.json",
"validate:safe": "python scripts/story_test_unity_safe.py . --verbose",
"validate:safe:ci": "python scripts/story_test_unity_safe.py . --fail-on-violations --output story-test-report.json",
"sync:reality": "python scripts/sync_reality.py"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jmeyer1980/TheStoryTest.git"
},
"keywords": [
"unity",
"dotnet",
"csharp",
"testing",
"validation",
"code-quality",
"il-analysis",
"bytecode",
"static-analysis",
"story-test",
"unity-package",
"code-quality-framework"
],
"author": {
"name": "Tiny Walnut Games",
"email": "jmeyer1980@gmail.com",
"url": "https://github.com/jmeyer1980"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/jmeyer1980/TheStoryTest/issues"
},
"homepage": "https://github.com/jmeyer1980/TheStoryTest#readme",
"engines": {
"python": "\u003e=3.8",
"node": "\u003e=14.0.0"
},
"devDependencies": {
},
"files": [
"scripts/",
"Packages/com.tinywalnutgames.storytest/",
"LICENSE",
"README.md",
"CHANGELOG.md"
],
"unity": {
"version": "2020.3.0",
"author": {
"name": "Tiny Walnut Games",
"email": "jmeyer1980@gmail.com",
"url": "https://tinywalnutgames.com"
}
}
}