Gradle: Basic Kotlin NodeJS tests runner

#KT-30531 Fixed
#KT-30528 Fixed
This commit is contained in:
Sergey Rostov
2019-02-20 15:14:05 +03:00
parent b6e675f934
commit d467e4209a
54 changed files with 3968 additions and 64 deletions
@@ -0,0 +1,30 @@
{
"name": "@kotlin/js-tests-teamcity",
"version": "0.0.1",
"description": "Simple Kotlin/JS tests runner with TeamCity reporter",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"bin": {
"kotlin-js-tests": "lib/kotlin-js-test.js"
},
"files": [
"lib/**/*"
],
"scripts": {
"build": "rimraf lib/* && rollup -c rollup.config.js"
},
"dependencies": {
"@types/node": "^10.12.21"
},
"devDependencies": {
"copyfiles": "^2.1.0",
"rimraf": "^2.6.3",
"rollup": "^1.1.2",
"rollup-plugin-commonjs": "^9.2.0",
"rollup-plugin-node-resolve": "^4.0.0",
"rollup-plugin-sourcemaps": "^0.4.2",
"rollup-plugin-typescript2": "^0.19.2",
"rollup-plugin-uglify": "^6.0.2",
"typescript": "^3.3.1"
}
}