diff --git a/.npmignore b/.npmignore index 28e6fbf..28a991e 100644 --- a/.npmignore +++ b/.npmignore @@ -4,6 +4,7 @@ scripts/ test/ docs/ docsgen/ -jest.config.json -.travis.yml +.github/ +jest.config.ts tslint.json +eslint.config.mjs diff --git a/.travis.yml b/.travis.yml deleted file mode 100644 index 28a2b9b..0000000 --- a/.travis.yml +++ /dev/null @@ -1,19 +0,0 @@ -language: node_js -node_js: - - "8.5.0" -cache: yarn -install: - - yarn -script: - - yarn verify -notifications: - email: false -deploy: - provider: pages - skip-cleanup: true - github-token: $GITHUB_TOKEN - keep-history: true - local-dir: docs/build - committer-from-gh: true - on: - branch: master diff --git a/package.json b/package.json index bc4661e..e42385f 100644 --- a/package.json +++ b/package.json @@ -9,7 +9,7 @@ "typescript", "typesafe" ], - "version": "1.1.0", + "version": "2.0.1", "license": "MIT", "homepage": "https://github.com/jscheiny/safe-units", "bugs": "https://github.com/jscheiny/safe-units/issues", @@ -44,6 +44,7 @@ }, "devDependencies": { "@eslint/js": "^9.2.0", + "@stylistic/eslint-plugin-ts": "^2.1.0", "@types/commonmark": "^0.27.9", "@types/jest": "^29.5.12", "@types/node": "^20.12.12", @@ -66,8 +67,5 @@ "typescript": "^5.4.5", "typescript-eslint": "^7.9.0", "typestyle": "^2.4.0" - }, - "dependencies": { - "@stylistic/eslint-plugin-ts": "^2.1.0" } }