-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
66 lines (66 loc) · 2.36 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
59
60
61
62
63
64
65
66
{
"name": "@wartoshika/qhun-transpiler",
"version": "0.7.3",
"description": "A command line tool to transpiles a Typescript project into supported other languages.",
"main": "dist/index.js",
"types": "dist/api/main.d.ts",
"bin": {
"qhun-transpiler": "./dist/bin/qhun-transpiler.js"
},
"repository": {
"type": "git",
"url": "https://github.com/wartoshika/qhun-transpiler"
},
"scripts": {
"test": "./node_modules/.bin/mocha -r ts-node/register \"test/**/*.spec*.ts\"",
"test-async": "./node_modules/.bin/mocha-parallel-tests -r ts-node/register \"test/**/*.spec*.ts\"",
"test-seperate": "./node_modules/.bin/mocha -r ts-node/register \"test/**/*.spec.sep.ts\"",
"coverage": "./node_modules/.bin/nyc ./node_modules/.bin/mocha -r ts-node/register \"test/**/*.spec.ts\"",
"coverage:send:coveralls": "nyc report --reporter=text-lcov | coveralls",
"test-ci": "./node_modules/.bin/npm-run-all test-seperate coverage",
"build-ts": "./node_modules/.bin/tsc",
"build-api": "./node_modules/.bin/copyfiles -f \"./src/api/**/*.d.ts\" \"./dist/api\"",
"build-bundle": "./node_modules/.bin/webpack --config ./webpack.config.js",
"build": "./node_modules/.bin/npm-run-all build-ts build-api build-bundle",
"run-ts": "./node_modules/.bin/ts-node src/index.ts",
"postversion": "git push --follow-tags"
},
"author": "wartoshika <dev@qhun.de>",
"license": "MIT",
"devDependencies": {
"@types/chai": "^4.1.4",
"@types/command-line-args": "^5.0.0",
"@types/command-line-usage": "^5.0.1",
"@types/md5": "^2.1.33",
"@types/mkdirp": "^0.5.2",
"@types/mocha": "^5.2.4",
"@types/mock-fs": "^3.6.30",
"@types/node": "^10.5.2",
"chai": "^4.1.2",
"copyfiles": "^2.1.0",
"coveralls": "^3.0.2",
"file-loader": "^2.0.0",
"istanbul": "^0.4.5",
"lua.vm.js": "0.0.1",
"mocha": "^5.2.0",
"mocha-parallel-tests": "^2.0.4",
"mocha-typescript": "^1.1.17",
"mock-fs": "^4.6.0",
"npm-run-all": "^4.1.3",
"nyc": "^13.0.1",
"source-map-support": "^0.5.6",
"ts-loader": "^4.4.2",
"ts-node": "^7.0.0",
"tslint": "^5.11.0",
"typescript": "~3.2",
"webpack": "^4.16.5",
"webpack-cli": "^3.1.0"
},
"dependencies": {
"command-line-args": "^5.0.2",
"command-line-usage": "^5.0.5",
"mkdirp": "^0.5.1",
"md5": "^2.2.1",
"typescript-mix": "^3.1.3"
}
}