Skip to content

Commit

Permalink
Publish
Browse files Browse the repository at this point in the history
 - @headwood/private-map@0.0.2
  • Loading branch information
openhoat committed Jun 3, 2018
1 parent 8ca81f7 commit 7753a77
Show file tree
Hide file tree
Showing 6 changed files with 92 additions and 22 deletions.
39 changes: 39 additions & 0 deletions packages/private-map/.editorconfig
Original file line number Diff line number Diff line change
@@ -0,0 +1,39 @@
[*]
charset=utf-8
end_of_line=lf
insert_final_newline=false
indent_style=space
indent_size=4

[{.eslintrc,.prettierrc,.redis-commander,.babelrc,jest.config,.stylelintrc,*.json,*.jsb3,*.jsb2,*.bowerrc}]
indent_style=space
indent_size=2

[{*.ats,*.ts}]
indent_style=space
indent_size=2

[{tsconfig.e2e.json,tsconfig.spec.json,tsconfig.app.json,tsconfig.json}]
indent_style=space
indent_size=2

[*.js]
indent_style=space
indent_size=2
insert_final_newline=true

[*.js.map]
indent_style=space
indent_size=2

[{.analysis_options,*.yml,*.yaml}]
indent_style=space
indent_size=2

[yarn.lock]
indent_style=space
indent_size=2

[tslint.json]
indent_style=space
indent_size=2
1 change: 1 addition & 0 deletions packages/private-map/.npmrc
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
access = public
5 changes: 0 additions & 5 deletions packages/private-map/.travis.yml

This file was deleted.

23 changes: 11 additions & 12 deletions packages/private-map/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,9 @@
{
"description": "Headwood utils for nodejs programming",
"private": true,
"name": "@headwood/private-map",
"version": "0.0.2",
"description": "Private map for real private class properties use",
"main": "built/private-map.js",
"types": "built/private-map",
"scripts": {
"start": "nps",
"build": "nps build",
Expand All @@ -11,23 +14,21 @@
"author": "Olivier Penhoat <openhoat@gmail.com> (http://headwood.net/)",
"repository": {
"type": "git",
"url": "git@github.com:openhoat/node-command.git"
"url": "git@github.com:openhoat/hw.git"
},
"bugs": {
"url": "https://github.com/openhoat/node-command/issues"
"url": "https://github.com/openhoat/hw/issues"
},
"engines": {
"node": ">= 8"
},
"husky": {
"hooks": {
"pre-commit": "nps lint && nps 'test -- --forbid-only'",
"pre-push": "nps check"
}
},
"dependencies": {
"@types/lodash": "^4.14.109",
"lodash": "^4.17.10"
},
"devDependencies": {
"@headwood/test-helper": "^0.0.4",
"@headwood/ts-build-template": "^0.0.3",
"@types/chai": "^4.0.10",
"@types/chai-as-promised": "^7.1.0",
"@types/es6-promise": "^3.3.0",
Expand All @@ -40,7 +41,6 @@
"chai-as-promised": "^7.1.1",
"cpx": "^1.5.0",
"husky": "^0.14.3",
"lerna": "^2.11.0",
"mocha": "^5.1.1",
"nps": "^5.9.0",
"nyc": "^11.7.3",
Expand All @@ -49,7 +49,6 @@
"sinon": "^5.0.7",
"sinon-chai": "^3.0.0",
"source-map-support": "^0.5.0",
"ts-build-template": "^0.0.2",
"ts-loader": "^4.3.0",
"ts-node": "^6.0.3",
"tslint": "^5.8.0",
Expand Down
41 changes: 41 additions & 0 deletions packages/private-map/tslint.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,41 @@
{
"env": {
"es6": true,
"node": true
},
"parserOptions": {
"ecmaVersion": 8
},
"rules": {
"quotemark": [
true,
"single",
"avoid-escape",
"avoid-template"
],
"import-name": false,
"variable-name": [
true,
"ban-keywords",
"check-format",
"allow-pascal-case",
"allow-leading-underscore"
],
"ter-arrow-parens": [
true,
"as-needed"
],
"semicolon": [
true,
"never"
],
"no-unused-variable": true,
"no-empty-interface": true,
"typedef": [
true,
"parameter",
"member-variable-declaration"
]
},
"extends": "tslint-config-airbnb"
}
5 changes: 0 additions & 5 deletions packages/test-helper/.travis.yml

This file was deleted.

0 comments on commit 7753a77

Please sign in to comment.