Skip to content

Commit

Permalink
fix: god dammit npm
Browse files Browse the repository at this point in the history
  • Loading branch information
jeffijoe committed Nov 11, 2017
1 parent 3a0fad9 commit 46a942e
Showing 1 changed file with 13 additions and 33 deletions.
46 changes: 13 additions & 33 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "awilix-koa",
"version": "1.0.0",
"version": "0.0.0-development",
"description": "Awilix helpers for Koa",
"main": "lib/index.js",
"typings": "lib/index.d.ts",
Expand All @@ -11,21 +11,19 @@
"build": "rimraf lib && tsc -p tsconfig.build.json",
"test": "jest",
"test:watch": "jest --watchAll",
"lint": "tslint --project tsconfig.json --fix \"src/**/*.ts\" && prettier --write \"src/**/*.ts\"",
"lint":
"tslint --project tsconfig.json --fix \"src/**/*.ts\" && prettier --write \"src/**/*.ts\"",
"cover": "jest --coverage",
"coveralls": "jest --coverage && cat ./coverage/lcov.info | coveralls",
"precommit": "lint-staged && npm run build",
"semantic-release": "semantic-release pre && npm publish && semantic-release post"
"semantic-release":
"semantic-release pre && npm publish && semantic-release post"
},
"repository": {
"type": "git",
"url": "https://github.com/jeffijoe/awilix-koa.git"
},
"files": [
"lib",
"LICENSE.md",
"README.md"
],
"files": ["lib", "LICENSE.md", "README.md"],
"directories": {
"lib": "lib"
},
Expand Down Expand Up @@ -87,25 +85,15 @@
"testEnvironment": "node",
"mapCoverage": true,
"testRegex": "(/__tests__/.*\\.(test|spec))\\.(ts|tsx|js)$",
"collectCoverageFrom": [
"src/**/*.ts"
],
"coveragePathIgnorePatterns": [
"/node_modules/"
],
"modulePaths": [
"src"
],
"collectCoverageFrom": ["src/**/*.ts"],
"coveragePathIgnorePatterns": ["/node_modules/"],
"modulePaths": ["src"],
"coverageDirectory": "<rootDir>/coverage",
"transform": {
"\\.(ts|tsx)": "<rootDir>/node_modules/ts-jest/preprocessor.js",
"\\.(js|jsx)": "babel-jest"
},
"moduleFileExtensions": [
"ts",
"tsx",
"js"
],
"moduleFileExtensions": ["ts", "tsx", "js"],
"globals": {}
},
"prettier": {
Expand All @@ -116,14 +104,8 @@
"generateNotes": "@semantic-release/release-notes-generator",
"analyzeCommits": {
"path": "semantic-release-conventional-commits",
"majorTypes": [
"major",
"breaking"
],
"minorTypes": [
"feat",
"minor"
],
"majorTypes": ["major", "breaking"],
"minorTypes": ["feat", "minor"],
"patchTypes": [
"chore",
"fix",
Expand All @@ -138,9 +120,7 @@
}
},
"babel": {
"presets": [
"latest"
],
"presets": ["latest"],
"plugins": "transform-decorators-legacy"
}
}

0 comments on commit 46a942e

Please sign in to comment.