@callstack-io/generator-node-module
Advanced tools
Comparing version 1.1.0 to 1.2.0
@@ -7,3 +7,2 @@ { | ||
"repository": "github:<%= githubUsername %>/<%= repoName %>", | ||
"bugs": "https://github.com/<%= githubUsername %>/<%= repoName %>/issues", | ||
"author": { | ||
@@ -25,3 +24,4 @@ "name": "<%= name %>", | ||
"jest": "jest src", | ||
"test": "npm run flow && npm run lint && npm run jest" | ||
"test": "npm run flow && npm run lint && npm run jest", | ||
"format": "eslint --fix src" | ||
}, | ||
@@ -42,17 +42,9 @@ "dependencies": {}, | ||
"eslint-plugin-jsx-a11y": "^4.0.0", | ||
"eslint-plugin-prettier": "^2.0.1", | ||
"eslint-plugin-react": "^6.10.3", | ||
"flow-bin": "^0.42.0", | ||
"husky": "^0.13.3", | ||
"jest": "^19.0.2", | ||
"lint-staged": "^3.4.0", | ||
"npm-release": "^1.0.0", | ||
"prettier": "^0.22.0" | ||
}, | ||
"lint-staged": { | ||
"*.js": [ | ||
"eslint --fix", | ||
"prettier --single-quote --trailing-comma all --write", | ||
"git add" | ||
] | ||
}, | ||
"babel": { | ||
@@ -82,2 +74,6 @@ "presets": [ | ||
], | ||
"plugins": [ | ||
"flowtype", | ||
"prettier" | ||
], | ||
"env": { | ||
@@ -87,2 +83,5 @@ "node": true, | ||
}, | ||
"globals": { | ||
"ReactClass": true | ||
}, | ||
"parserOptions": { | ||
@@ -92,25 +91,38 @@ "sourceType": "module" | ||
"rules": { | ||
"strict": 0, | ||
"arrow-body-style": 0, | ||
"arrow-parens": 0, | ||
"class-methods-use-this": 0, | ||
"default-case": 0, | ||
"generator-star-spacing": 0, | ||
"global-require": 0, | ||
"prettier/prettier": ["error", { | ||
"trailingComma": "all", | ||
"singleQuote": true | ||
}], | ||
"no-underscore-dangle": 0, | ||
"no-use-before-define": 0, | ||
"no-unused-expressions": 0, | ||
"new-cap": 0, | ||
"no-alert": 0, | ||
"no-confusing-arrow": 0, | ||
"no-console": 0, | ||
"no-constant-condition": 0, | ||
"no-plusplus": 0, | ||
"no-class-assign": 0, | ||
"no-duplicate-imports": 0, | ||
"no-plusplus": 0, | ||
"no-restricted-syntax": 0, | ||
"no-underscore-dangle": 0, | ||
"no-use-before-define": 0, | ||
"import/no-duplicates": 0, | ||
"import/extensions": 0, | ||
"import/no-unresolved": 0, | ||
"import/no-dynamic-require": 0 | ||
"import/no-dynamic-require": 0, | ||
"flowtype/boolean-style": [ | ||
2, | ||
"boolean" | ||
], | ||
"flowtype/no-weak-types": 1, | ||
"flowtype/require-parameter-type": 2, | ||
"flowtype/require-return-type": [ | ||
0, | ||
"always", | ||
{ | ||
"annotateUndefined": "never" | ||
} | ||
], | ||
"flowtype/require-valid-file-annotation": 2, | ||
"flowtype/use-flow-type": 1, | ||
"flowtype/valid-syntax": 1 | ||
} | ||
} | ||
} |
@@ -5,3 +5,3 @@ # <%= repoName %> | ||
<a title="Join on Slack" href="slack.callstack.io"><img src="https://slack.callstack.io/badge.svg" /></a> | ||
<a title="Join on Slack" href="https://slack.callstack.io"><img src="https://slack.callstack.io/badge.svg" /></a> | ||
@@ -8,0 +8,0 @@ ## Install |
{ | ||
"name": "@callstack-io/generator-node-module", | ||
"version": "1.1.0", | ||
"version": "1.2.0", | ||
"description": "Scaffold out a node module", | ||
@@ -5,0 +5,0 @@ "license": "MIT", |
@callstack-io/generator-node-module | ||
=========== | ||
<a title="Join on Slack" href="slack.callstack.io"><img src="https://slack.callstack.io/badge.svg" /></a> | ||
<a title="Join on Slack" href="https://slack.callstack.io"><img src="https://slack.callstack.io/badge.svg" /></a> | ||
@@ -15,3 +15,2 @@ A [Yeoman](http://yeoman.io/) generator to author libraries in ES2015 (and beyond!) for Node. | ||
- [Eslint](https://github.com/eslint/eslint) and `eslint-config-airbnb` to keep your code consistent | ||
- [Husky](https://github.com/typicode/husky) and [lint-staged](https://github.com/okonet/lint-staged) to test changes before pushing | ||
- MIT license and Code of conduct | ||
@@ -18,0 +17,0 @@ - Github issues template |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
14151
37