-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 1.18 KB
/
package.json
File metadata and controls
40 lines (40 loc) · 1.18 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
{
"name": "@op6yz/unity-batchmode-runner",
"version": "0.3.0",
"description": "Unity batchmode runner, that wraps Unity3D batchmode CLI handling stdout and stderr",
"main": "dist/main.js",
"author": {
"name": "IV",
"email": "iv.conduct@gmail.com"
},
"bin": {
"unity-batchmode-runner": "dist/main.js"
},
"scripts": {
"build": "tsc -p tsconfig.build.json",
"pb": "tsc -p tsconfig.build.json && npm publish",
"exec": "tsc -p tsconfig.build.json && node ./dist/main.js",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"test:unit": "jest test/unit",
"test:integration": "jest test/integration/*.integration.test.ts",
"test:all": "jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/iveyalkin/unity-batchmode-runner.git"
},
"devDependencies": {
"@types/jest": "^26.0.15",
"@types/node": "^14.14.31",
"jest": "^29.7.0",
"ts-jest": "^29.2.5",
"typescript": "^4.1.2"
},
"files": [
"dist/**/*",
"README.md",
"LICENSE"
]
}