Skip to content

Commit

Permalink
Upgrade: Updated deps
Browse files Browse the repository at this point in the history
  • Loading branch information
unlight committed Mar 16, 2018
1 parent 0995536 commit 78b56e0
Show file tree
Hide file tree
Showing 6 changed files with 12 additions and 60 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -6,3 +6,4 @@
*.log
~*
/lib/
/dist/
1 change: 1 addition & 0 deletions .npmrc
Original file line number Diff line number Diff line change
@@ -1 +1,2 @@
package-lock = false
# save-exact = true
47 changes: 0 additions & 47 deletions CHANGELOG.md

This file was deleted.

Binary file added node-package-starter-0.0.0-dev.tgz
Binary file not shown.
17 changes: 7 additions & 10 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
{
"name": "node-package-starter",
"version": "0.2.0",
"version": "0.0.0-dev",
"license": "MIT",
"description": "Describe your project",
"main": "lib/index.js",
"description": "node-package-starter",
"main": "dist/index.js",
"typings": "src/index.ts",
"scripts": {
"t": "npm run mocha -- src/*.spec.ts",
Expand All @@ -24,8 +24,8 @@
"prepublishOnly": "npm run build",
"build": "tsc",
"prebuild": "npm run clean",
"clean": "rimraf lib",
"setup": "npm i -g commitizen semantic-release-cli",
"clean": "rimraf dist",
"_setup": "npm i -g commitizen semantic-release-cli",
"commit": "git-cz"
},
"dependencies": {
Expand All @@ -40,7 +40,7 @@
"chokidar-cli": "^1.2.0",
"concurrently": "^3.5.1",
"conventional-changelog-eslint": "^1.0.5",
"cz-adapter-eslint": "github:stormwarning/cz-adapter-eslint",
"cz-adapter-eslint": "^0.1.2",
"eslint": "^4.18.2",
"eslint-plugin-import": "^2.9.0",
"eslint-plugin-tslint": "^2.1.0",
Expand All @@ -51,12 +51,9 @@
"semantic-release": "^15.0.2",
"ts-node": "^5.0.1",
"tslint": "^5.9.1",
"typescript": "^2.7.2",
"typescript": "2.8.0-rc",
"typescript-eslint-parser": "^14.0.0"
},
"directories": {
"lib": "lib"
},
"engines": {
"node": ">=6",
"npm": ">=3"
Expand Down
6 changes: 3 additions & 3 deletions tsconfig.json
Original file line number Diff line number Diff line change
@@ -1,18 +1,18 @@
{
"compilerOptions": {
"target": "es6",
"target": "es2015",
"module": "commonjs",
"moduleResolution": "node",
"importHelpers": true,
"experimentalDecorators": true,
"emitDecoratorMetadata": true,
"declaration": false,
"outDir": "lib",
"outDir": "dist",
"pretty": false,
"removeComments": false,
"inlineSourceMap": true,
"lib": [
"es2017"
"es2018"
]
},
"include": [
Expand Down

0 comments on commit 78b56e0

Please sign in to comment.