From aa945149ae86917c05fd7be441a1e876f8d19563 Mon Sep 17 00:00:00 2001 From: Phil Kunz Date: Sat, 28 Jan 2017 15:23:26 +0100 Subject: [PATCH] initial --- .gitlab-ci.yml | 59 ++++++++++++++++++++++++++++++++++++++++++++++++++ package.json | 19 ++++++++++++++++ tslint.json | 3 +++ 3 files changed, 81 insertions(+) create mode 100644 .gitlab-ci.yml create mode 100644 package.json create mode 100644 tslint.json diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml new file mode 100644 index 0000000..72d25cc --- /dev/null +++ b/.gitlab-ci.yml @@ -0,0 +1,59 @@ +image: hosttoday/ht-docker-node:npmts + +stages: +- test +- release +- trigger +- pages + +testLEGACY: + stage: test + script: + - npmci test legacy + tags: + - docker + allow_failure: true + +testLTS: + stage: test + script: + - npmci test lts + tags: + - docker + +testSTABLE: + stage: test + script: + - npmci test stable + tags: + - docker + +release: + stage: release + script: + - npmci publish + only: + - tags + tags: + - docker + +trigger: + stage: trigger + script: + - npmci trigger + only: + - tags + tags: + - docker + +pages: + image: hosttoday/ht-docker-node:npmpage + stage: pages + script: + - npmci command npmpage --publish gitlab + only: + - tags + artifacts: + expire_in: 1 week + paths: + - public diff --git a/package.json b/package.json new file mode 100644 index 0000000..0cf7e01 --- /dev/null +++ b/package.json @@ -0,0 +1,19 @@ +{ + "name": "smartjson", + "version": "1.0.0", + "description": "typed json handlers", + "main": "dist/index.js", + "scripts": { + "test": "(npmts)" + }, + "repository": { + "type": "git", + "url": "git+ssh://git@gitlab.com/pushrocks/smartjson.git" + }, + "author": "Lossless GmbH", + "license": "MIT", + "bugs": { + "url": "https://gitlab.com/pushrocks/smartjson/issues" + }, + "homepage": "https://gitlab.com/pushrocks/smartjson#README" +} diff --git a/tslint.json b/tslint.json new file mode 100644 index 0000000..45052ad --- /dev/null +++ b/tslint.json @@ -0,0 +1,3 @@ +{ + "extends": "tslint-config-standard" +}