-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathpackage.json
36 lines (36 loc) · 1.13 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
{
"name": "@mitm/assetbundlecompiler",
"version": "0.0.0-semantic-release",
"description": "Node.js wrapper around Unity3D's BuildPipeline to create AssetBundles from any files",
"repository": "[email protected]:mitmadness/AssetBundleCompiler.git",
"author": "Morgan Touverey Quilling <[email protected]>",
"license": "MIT",
"main": "dist/src/index.js",
"types": "dist/src/index.d.ts",
"scripts": {
"build": "yarn lint && tsc",
"watch": "tsc -w",
"semantic-release": "semantic-release",
"test": "mocha \"dist/test/**/*.js\"",
"lint": "tslint -t verbose \"src/**/*.ts\" \"test/**/*.ts\"",
"travis-deploy-once": "travis-deploy-once"
},
"devDependencies": {
"@types/chai": "^4.1.0",
"@types/fs-extra": "^5.0.0",
"@types/js-yaml": "^3.10.1",
"@types/mocha": "^2.2.40",
"@types/node": "^9.3.0",
"chai": "^4.1.2",
"mocha": "^4.1.0",
"semantic-release": "^11.0.2",
"tslint": "^5.2.0",
"typescript": "~2.6.2",
"travis-deploy-once": "^4.3.1"
},
"dependencies": {
"@mitm/unityinvoker": "^1.0.0",
"fs-extra": "^5.0.0",
"js-yaml": "^3.10.0"
}
}