Comparing version 0.0.6 to 2.0.0
@@ -0,1 +1,20 @@ | ||
# Change Log | ||
All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines. | ||
<a name="2.0.0"></a> | ||
# [2.0.0](https://github.com/s-panferov/rscrollspy/compare/v0.0.6...v2.0.0) (2016-10-04) | ||
### Features | ||
* refactor to support typescript[@2](https://github.com/2) ([50d0db1](https://github.com/s-panferov/rscrollspy/commit/50d0db1)) | ||
### BREAKING CHANGES | ||
* requires @types/react | ||
<a name="0.0.6"></a> | ||
@@ -41,4 +60,1 @@ ## [0.0.6](https://github.com/s-panferov/rscrollspy/compare/v0.0.5...v0.0.6) (2016-03-01) | ||
* initial commit ([8840f64](https://github.com/s-panferov/rscrollspy/commit/8840f64)) | ||
{ | ||
"name": "rscrollspy", | ||
"version": "0.0.6", | ||
"version": "2.0.0", | ||
"description": "React scroll spy component", | ||
@@ -8,2 +8,5 @@ "main": "dist/index.js", | ||
"scripts": { | ||
"prerelease": "npm run build", | ||
"build": "tsc", | ||
"release": "standard-version", | ||
"test": "echo \"Error: no test specified\" && exit 1" | ||
@@ -18,11 +21,7 @@ }, | ||
"devDependencies": { | ||
"grunt": "^0.4.5", | ||
"grunt-bump": "^0.7.0", | ||
"grunt-contrib-clean": "^1.0.0", | ||
"grunt-conventional-changelog": "^6.1.0", | ||
"grunt-shell": "^1.1.2", | ||
"grunt-ts": "^5.3.2", | ||
"load-grunt-tasks": "^3.4.0", | ||
"typescript": "^1.8.2" | ||
"typescript": "^2.0.3" | ||
}, | ||
"dependencies": { | ||
"@types/react": "^0.14.38" | ||
} | ||
} |
{ | ||
"rules": { | ||
"class-name": true, | ||
"comment-format": [true, | ||
"check-space" | ||
], | ||
"curly": true, | ||
"eofline": true, | ||
"indent": [true, | ||
"spaces" | ||
"indent": [ | ||
true, | ||
"tabs" | ||
], | ||
"jsdoc-format": true, | ||
"member-ordering": [true, | ||
"public-before-private", | ||
"static-before-instance", | ||
"variables-before-functions" | ||
"quotemark": [ | ||
true, | ||
"single" | ||
], | ||
"max-line-length": [ | ||
true, | ||
120 | ||
], | ||
"member-ordering": [ | ||
true, | ||
"statics-first" | ||
], | ||
"new-parens": true, | ||
"no-arg": true, | ||
"no-consecutive-blank-lines": true, | ||
"no-console": [ | ||
true, | ||
"time", | ||
"timeEnd" | ||
], | ||
"no-debugger": true, | ||
"no-duplicate-key": true, | ||
"no-duplicate-variable": true, | ||
"no-eval": true, | ||
"no-internal-module": true, | ||
"no-switch-case-fall-through": true, | ||
"no-trailing-whitespace": true, | ||
"no-unused-expression": true, | ||
"no-unused-variable": [true, "react"], | ||
"no-use-before-declare": true, | ||
"no-unused-variable": [ | ||
true, | ||
"react" | ||
], | ||
"no-var-keyword": true, | ||
"quotemark": [true, | ||
"single" | ||
"one-variable-per-declaration": [ | ||
true, | ||
"ignore-for-loop" | ||
], | ||
"semicolon": true | ||
"semicolon": [ | ||
true, | ||
"never" | ||
], | ||
"triple-equals": [ | ||
true, | ||
"allow-null-check" | ||
], | ||
"typedef-whitespace": [ | ||
true | ||
], | ||
"use-isnan": true, | ||
"whitespace": [ | ||
true, | ||
"check-branch", | ||
"check-decl", | ||
"check-operator", | ||
"check-separator", | ||
"check-type" | ||
] | ||
} | ||
} | ||
} |
Sorry, the diff of this file is not supported yet
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
Major refactor
Supply chain riskPackage has recently undergone a major refactor. It may be unstable or indicate significant internal changes. Use caution when updating to versions that include significant changes.
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
No v1
QualityPackage is not semver >=1. This means it is not stable and does not support ^ ranges.
Found 1 instance in 1 package
1
2
22873
1
9
479
1
+ Added@types/react@^0.14.38
+ Added@types/react@0.14.57(transitive)