repository-provider
Advanced tools
Comparing version 5.2.5 to 5.2.6
@@ -347,4 +347,8 @@ 'use strict'; | ||
content: { | ||
value: content, | ||
writeable: true | ||
get() { | ||
return content; | ||
}, | ||
set(value) { | ||
content = value; | ||
} | ||
}, | ||
@@ -351,0 +355,0 @@ type: { |
{ | ||
"name": "repository-provider", | ||
"version": "5.2.5", | ||
"version": "5.2.6", | ||
"publishConfig": { | ||
@@ -36,17 +36,17 @@ "access": "public" | ||
"@babel/plugin-proposal-async-generator-functions": "^7.1.0", | ||
"ava": "^1.0.0-beta.8", | ||
"ava": "^1.0.0-rc.1", | ||
"documentation": "^8.1.2", | ||
"markdown-doctest": "^0.9.1", | ||
"nyc": "^13.1.0", | ||
"rollup": "^0.66.4", | ||
"rollup": "^0.66.6", | ||
"rollup-plugin-babel": "^4.0.3", | ||
"rollup-plugin-cleanup": "^3.0.0", | ||
"rollup-plugin-commonjs": "^9.1.8", | ||
"rollup-plugin-commonjs": "^9.2.0", | ||
"rollup-plugin-executable": "^1.3.0", | ||
"rollup-plugin-istanbul": "^2.0.1", | ||
"rollup-plugin-json": "^3.1.0", | ||
"rollup-plugin-multi-entry": "^2.0.2", | ||
"rollup-plugin-node-resolve": "^3.4.0", | ||
"semantic-release": "^15.9.17", | ||
"travis-deploy-once": "^5.0.9", | ||
"rollup-plugin-json": "^3.1.0" | ||
"travis-deploy-once": "^5.0.9" | ||
}, | ||
@@ -53,0 +53,0 @@ "engines": { |
@@ -36,3 +36,10 @@ /** | ||
path: { value: path }, | ||
content: { value: content, writeable: true }, | ||
content: { | ||
get() { | ||
return content; | ||
}, | ||
set(value) { | ||
content = value; | ||
} | ||
}, | ||
type: { value: type }, | ||
@@ -39,0 +46,0 @@ mode: { value: mode } |
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
61893
1580